Skip to content

Commit

Permalink
vscode: replace deprecated boolean with string
Browse files Browse the repository at this point in the history
The boolean values for `source.fixAll.eslint` are deprecated. This
commit changes the boolean values to the correct string values.

See: https://code.visualstudio.com/updates/v1_83#_editor
  • Loading branch information
gijswijs committed Nov 7, 2024
1 parent cb6977f commit e6192f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@
}
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"source.fixAll.eslint": "explicit"
},
"eslint.workingDirectories": [
"./app"
],
Expand Down

0 comments on commit e6192f7

Please sign in to comment.