-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvoxel.code-workspace
35 lines (35 loc) · 929 Bytes
/
voxel.code-workspace
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
{
"folders": [{
"path": "."
}],
"settings": {
"npm.enableScriptExplorer": true,
"scss.lint.duplicateProperties": "error",
"scss.lint.emptyRules": "error",
"scss.lint.zeroUnits": "error",
"files.exclude": {
"**/node_modules": true,
"build/": true,
},
"typescript.preferences.importModuleSpecifier": "non-relative",
"javascript.preferences.importModuleSpecifier": "non-relative",
"typescript.tsdk": "node_modules\\typescript\\lib",
"editor.detectIndentation": false,
"javascript.preferences.quoteStyle": "double",
"typescript.preferences.quoteStyle": "double",
"eslint.autoFixOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.insertSpaces": false
},
"extensions": {
"recommendations": [
"aaron-bond.better-comments",
"quicktype.quicktype",
"dbaeumer.vscode-eslint"
]
}
}