-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathsettings.json
31 lines (31 loc) · 882 Bytes
/
settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
// only use words from .cspell.json
"cSpell.userWords": [],
"cSpell.enabled": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"files.exclude": {
"**/node_modules/**": true,
"htmlcov/": true,
".coverage": true,
"coverage.xml": true,
"**/.eslintcache": true,
"yarn-error.log": true
},
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"files.insertFinalNewline": true,
"[json]": {
"editor.tabSize": 2
},
"[typescript][typescriptreact][javascript][javascriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"editor.tabSize": 2
},
"eslint.workingDirectories": [{ "mode": "auto" }],
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true
}