-
Notifications
You must be signed in to change notification settings - Fork 0
/
SSK.code-workspace
47 lines (47 loc) · 1.32 KB
/
SSK.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.tabSize": 2,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/__pycache__": true,
"**/*.meta": true,
"**/*.csproj": true,
"**/node_modules": true
},
"eslint.workingDirectories": [{ "mode": "auto" }],
"editor.scrollBeyondLastLine": false,
"editor.insertSpaces": true,
"files.insertFinalNewline": true,
"editor.detectIndentation": false,
"diffEditor.ignoreTrimWhitespace": false,
"editor.renderWhitespace": "none",
"editor.guides.indentation": true,
"files.trimTrailingWhitespace": true,
"prettier.arrowParens": "always",
"prettier.bracketSpacing": true,
"prettier.enable": true,
"prettier.htmlWhitespaceSensitivity": "css",
"prettier.proseWrap": "preserve",
"prettier.quoteProps": "as-needed",
"prettier.semi": true,
"prettier.singleAttributePerLine": false,
"prettier.singleQuote": true,
"prettier.trailingComma": "none",
"prettier.useEditorConfig": true,
"prettier.useTabs": false,
"prettier.vueIndentScriptAndStyle": true,
"prettier.bracketSameLine": false,
"prettier.printWidth": 200,
"editor.formatOnSave": true
}
}