File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Dependabot disabled - we manage dependencies manually
2+ # Using open-pull-requests-limit: 0 to disable version updates
3+ # See: https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/configuration-options-for-dependency-updates
24version : 2
3- updates : []
5+ updates :
6+ - package-ecosystem : npm
7+ directory : /
8+ schedule :
9+ interval : yearly
10+ open-pull-requests-limit : 0
Original file line number Diff line number Diff line change @@ -63,18 +63,14 @@ function shouldRunAllLinters(changedFiles) {
6363 * Filter files to only those that should be linted.
6464 */
6565function filterLintableFiles ( files ) {
66+ // Only include extensions actually supported by oxfmt/oxlint
6667 const lintableExtensions = new Set ( [
6768 '.js' ,
6869 '.mjs' ,
6970 '.cjs' ,
7071 '.ts' ,
7172 '.cts' ,
7273 '.mts' ,
73- '.json' ,
74- '.jsonc' ,
75- '.md' ,
76- '.yml' ,
77- '.yaml' ,
7874 ] )
7975
8076 return files . filter ( file => {
You can’t perform that action at this time.
0 commit comments