From c392cdad42b8d3d3d2d84e4a154b7668d957e1b6 Mon Sep 17 00:00:00 2001 From: jdalton Date: Thu, 12 Mar 2026 14:36:45 -0400 Subject: [PATCH 1/2] chore: disable dependabot --- .github/dependabot.yml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..23829ff9 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,3 @@ +# Dependabot disabled - we manage dependencies manually +version: 2 +updates: [] From f76351db514976ce8521a7e00202436f8ad5da72 Mon Sep 17 00:00:00 2001 From: jdalton Date: Thu, 12 Mar 2026 17:45:54 -0400 Subject: [PATCH 2/2] fix: properly disable dependabot and fix lint for non-lintable files --- .github/dependabot.yml | 9 ++++++++- scripts/lint.mjs | 6 +----- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 23829ff9..85b3a123 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -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 diff --git a/scripts/lint.mjs b/scripts/lint.mjs index 8d7029f7..d39459c9 100644 --- a/scripts/lint.mjs +++ b/scripts/lint.mjs @@ -104,6 +104,7 @@ 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', @@ -111,11 +112,6 @@ function filterLintableFiles(files) { '.ts', '.cts', '.mts', - '.json', - '.jsonc', - '.md', - '.yml', - '.yaml', ]) const oxlintExcludePatterns = getOxlintExcludePatterns()