From c0fcd441040861f53974cccb693a9dd3d4a374ee Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Mon, 14 Aug 2023 00:41:43 +0200 Subject: [PATCH] build: refine vscode recommanded extensions list MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .lintstagedrc.js | 2 +- .vscode/extensions.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.lintstagedrc.js b/.lintstagedrc.js index a247d74d..3ee7fd30 100644 --- a/.lintstagedrc.js +++ b/.lintstagedrc.js @@ -4,5 +4,5 @@ module.exports = { 'ts-standard --fix', 'eslint --cache --fix' ], - '**/*.{json,md,yml,yaml}': ['rome format --write'] + '!(.vscode/**)**/*.{json,md,yml,yaml}': ['rome format --write'] } diff --git a/.vscode/extensions.json b/.vscode/extensions.json index bd5fe69a..9447ed82 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -2,9 +2,10 @@ // See https://go.microsoft.com/fwlink/?LinkId=827846 // for the documentation about the extensions.json format "recommendations": [ + "EditorConfig.EditorConfig", "dbaeumer.vscode-eslint", "sonarsource.sonarlint-vscode", - "EditorConfig.EditorConfig", + "standard.vscode-standard", "streetsidesoftware.code-spell-checker" ] } -- 2.34.1