Skip to content

Commit

Permalink
Merge pull request #505 from SamB/fix-vscode-eslint
Browse files Browse the repository at this point in the history
Fix vscode-eslint settings
  • Loading branch information
hildjj authored Mar 15, 2024
2 parents 11317ef + b559080 commit 6e1f0fb
Showing 1 changed file with 18 additions and 15 deletions.
33 changes: 18 additions & 15 deletions peggy.code-workspace
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
{
"folders": [
{
"path": "."
}
],
"settings": {
"eslint.format.enable": true,
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"peggyjs.peggy-language"
]
}
"folders": [
{
"path": "."
}
],
"settings": {
"eslint.format.enable": true,
"eslint.experimental.useFlatConfig": true,
"[javascript][typescript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
},
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"peggyjs.peggy-language"
]
}
}

0 comments on commit 6e1f0fb

Please sign in to comment.