-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.json
More file actions
35 lines (35 loc) · 800 Bytes
/
settings.json
File metadata and controls
35 lines (35 loc) · 800 Bytes
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
32
33
34
35
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.formatOnSave": true,
"[typescript]": {
"editor.formatOnSave": false,
},
"[typescriptreact]": {
"editor.formatOnSave": false,
},
"editor.detectIndentation": false,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.eol": "\n",
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"node_modules": true,
"**/*.js": true,
"**/*.d.ts": true,
".nyc_output": true,
"coverage": true,
"vendor": true,
"test_results": true,
".phpunit.cache": true
},
"typescript.tsdk": "./node_modules/typescript.lib",
"editor.rulers": [
80
]
}