From 470fe189ae302abfff3b2d6704db08d8b61fa680 Mon Sep 17 00:00:00 2001 From: Danial Raza Date: Tue, 5 Dec 2023 18:29:13 +0100 Subject: [PATCH] chore: use string values in vs code settings (#856) --- .vscode/settings.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index a5558c2f..dfcf6135 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,9 +2,9 @@ "files.eol": "\n", "typescript.tsdk": "node_modules/typescript/lib", "editor.codeActionsOnSave": { - "source.organizeImports": false, - "source.fixAll": true, - "source.fixAll.eslint": true + "source.organizeImports": "never", + "source.fixAll": "explicit", + "source.fixAll.eslint": "explicit" }, "cSpell.enableFiletypes": ["mdx"] }