From 0f0cfba62408e05b6e19874e7e2ba5aa5f972d95 Mon Sep 17 00:00:00 2001 From: Debanjum Date: Tue, 8 Jul 2025 21:47:19 -0700 Subject: [PATCH] Ignore vscode settings.json from pre-commit json check Vscode settings.json follows jsonc (json with comments) format --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 392b4643..c3a2ae44 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -12,7 +12,7 @@ repos: # Exclude elisp files to not clear page breaks exclude: \.el$ - id: check-json - exclude: (devcontainer\.json|launch\.json)$ + exclude: (devcontainer\.json|launch\.json|settings\.json)$ - id: check-toml - id: check-yaml