Skip to content

Commit

Permalink
feat: add some basic recommendations for vscode users to make the sta…
Browse files Browse the repository at this point in the history
…rt of this project easier
  • Loading branch information
BracketJohn committed Mar 1, 2023
1 parent 377a2a6 commit e1735b6
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"recommendations": [
"editorconfig.editorconfig",
"dbaeumer.vscode-eslint"
]
}
19 changes: 19 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
// Use `eslint` for vue, ts and js
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"[js]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[ts]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[typescript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"eslint.validate": [
"javascript",
"typescript"
]
}

0 comments on commit e1735b6

Please sign in to comment.