vscode 1.85 in Nov 2023 deprecated "source.fixAll.eslint": true

This commit is contained in:
John McDowell
2024-05-02 13:43:16 -07:00
parent 610b1682c7
commit 5d1c880756

34
.vscode/settings.json vendored
View File

@@ -1,19 +1,17 @@
{
"i18n-ally.localesPaths": [
"public/locales"
],
"i18n-ally.keystyle": "nested",
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.renderWhitespace": "all",
"editor.formatOnSave": true,
"eslint.format.enable": true,
"eslint.run": "onType"
}
"i18n-ally.localesPaths": ["public/locales"],
"i18n-ally.keystyle": "nested",
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"editor.renderWhitespace": "all",
"editor.formatOnSave": true,
"eslint.format.enable": true,
"eslint.run": "onType"
}