chore(vscode): update settings.json

Due to an update to the ESLint extension, the settings schema has changed.
ESLint attempts to change them to the new options as soon as it detects the old ones. We set our desired behaviour
(by default to do all the heavy lifting for us), so nobody else commits incorrect settings by accident or
uses the incorrect behaviour

Signed-off-by: Fernando Fernández <ferferga@hotmail.com>
This commit is contained in:
Fernando Fernández 2023-12-11 08:53:15 +01:00
parent 63507f2e36
commit 722e475791
No known key found for this signature in database
GPG Key ID: 82FD36644F1F4D3B

View File

@ -1,8 +1,8 @@
{
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true ,
"source.organizeImports": false
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "always",
"source.organizeImports": "always"
},
"[javascript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"