From ba050423cbafdfd9cbe01f9a17084fbbee30a70c Mon Sep 17 00:00:00 2001 From: Gregor Zurowski Date: Sun, 8 Mar 2026 08:36:57 +0100 Subject: [PATCH 1/2] Use jsonc linting for VSCode's setting file --- .eslintrc.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .eslintrc.json diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..cb4e769 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,8 @@ +{ + "overrides": [ + { + "files": ["vscode/settings.json"], + "extends": ["plugin:jsonc/recommended-with-jsonc"] + } + ] +} From 8dee7e244d23af70b2ba9dee3596ae8cfd225e56 Mon Sep 17 00:00:00 2001 From: Gregor Zurowski Date: Sun, 8 Mar 2026 16:21:53 +0100 Subject: [PATCH 2/2] Disable linting of settings.json --- .eslintrc.json | 8 -------- .github/workflows/linter.yml | 1 + 2 files changed, 1 insertion(+), 8 deletions(-) delete mode 100644 .eslintrc.json diff --git a/.eslintrc.json b/.eslintrc.json deleted file mode 100644 index cb4e769..0000000 --- a/.eslintrc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "overrides": [ - { - "files": ["vscode/settings.json"], - "extends": ["plugin:jsonc/recommended-with-jsonc"] - } - ] -} diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index d37d5af..d8bea8e 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -18,4 +18,5 @@ jobs: uses: github/super-linter/slim@v5 env: DEFAULT_BRANCH: main + FILTER_REGEX_EXCLUDE: .*vscode/settings\.json GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}