-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmultipage-skeleton.code-workspace
49 lines (49 loc) · 1.32 KB
/
multipage-skeleton.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"folders": [{
"path": "."
}],
"settings": {
"eslint.alwaysShowStatus": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.codeAction.showDocumentation": {
"enable": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"eslint.format.enable": true,
"eslint.probe": [
"javascript",
"javascriptreact",
"markdown",
],
"editor.tabCompletion": "on",
"eslint.validate": ["javascript", "typescript"],
"files.defaultLanguage": "${activeEditorLanguage}",
"files.eol": "\n",
"files.exclude": {
"**/.DS_Store": true,
"**/.git": true,
"**/.hg": true,
"**/.svn": true,
"**/CVS": true,
"**/node_modules": true
},
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"javascript.format.insertSpaceAfterConstructor": true,
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
"javascript.format.semicolons": "ignore",
"javascript.preferences.quoteStyle": "single",
"prettier.semi": false,
"prettier.endOfLine": "lf",
"search.exclude": {
"!/system/*/.ps*": true,
"**/bower_components": true,
"system/": true
},
"deno.enable": false
}
}