From 44c3ddb8a9a6c52467cc72fcad7eec3d48ecdc67 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Tue, 17 Jan 2023 21:17:59 -0600 Subject: [PATCH] vscode: don't lint css through VSCode (rely on stylint and Tailwind extension) --- .vscode/settings.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index d7ca13345..1b3f69961 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,5 @@ { + "css.validate": false, "editor.insertSpaces": true, "editor.tabSize": 2, "files.associations": { @@ -15,5 +16,6 @@ "fileMatch": ["renovate.json"], "url": "https://docs.renovatebot.com/renovate-schema.json" } - ] + ], + "scss.validate": false }