Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Dependabot disabled - we manage dependencies manually
# Using open-pull-requests-limit: 0 to disable version updates
# See: https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/configuration-options-for-dependency-updates
version: 2
updates: []
updates:
- package-ecosystem: npm
directory: /
schedule:
interval: yearly
open-pull-requests-limit: 0
6 changes: 1 addition & 5 deletions scripts/lint.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -104,18 +104,14 @@ function shouldRunAllLinters(changedFiles) {
* Filter files to only those that should be linted.
*/
function filterLintableFiles(files) {
// Only include extensions actually supported by oxfmt/oxlint
const lintableExtensions = new Set([
'.js',
'.mjs',
'.cjs',
'.ts',
'.cts',
'.mts',
'.json',
'.jsonc',
'.md',
'.yml',
'.yaml',
])

const oxlintExcludePatterns = getOxlintExcludePatterns()
Expand Down
Loading