Skip to content

Commit 6f8e975

Browse files
author
RouvenGonzalez
committed
#3 changed vscode settings.json to autoformat on save with eslint
1 parent 985b9ca commit 6f8e975

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

.vscode/settings.json

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
{
2-
"liveServer.settings.port": 5501,
3-
"eslint.alwaysShowStatus": true,
4-
"eslint.debug": true,
5-
"eslint.format.enable": true
6-
}
2+
"liveServer.settings.port": 5501,
3+
"eslint.debug": true,
4+
"eslint.format.enable": true,
5+
"editor.formatOnSave": true,
6+
"[javascript]": {
7+
"editor.formatOnSave": false
8+
},
9+
"prettier.disableLanguages": ["js"],
10+
"editor.codeActionsOnSave": {
11+
"source.fixAll.eslint": true
12+
},
13+
"eslint.alwaysShowStatus": true,
14+
"files.autoSave": "onFocusChange"
15+
}

0 commit comments

Comments
 (0)