-
Notifications
You must be signed in to change notification settings - Fork 0
/
StarsWorkflow.code-workspace
83 lines (81 loc) · 2.04 KB
/
StarsWorkflow.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"folders": [
{
"path": "."
}
],
"settings": {
"files.associations": {
".code-workspace": "jsonc",
".eslintrc": "jsonc",
".eslintrc*.json": "jsonc",
".stylelintrc": "jsonc",
"stylelintrc": "jsonc",
"README": "markdown"
},
"search.useIgnoreFiles": true,
"search.exclude": {
"**/dist": true,
"**/*.log": true,
"**/*.pid": true,
"**/.git": true,
"**/node_modules": true
},
//
"editor.rulers": [120, 180],
"files.eol": "\n",
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
//
"cSpell.diagnosticLevel": "Hint",
"eslint.run": "onType",
"eslint.probe": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue"
],
"eslint.format.enable": true,
"eslint.lintTask.enable": true,
"eslint.workingDirectories": [
{"directory": "webs/jobclubweb", "changeProcessCWD": true},
{"directory": "common/**", "changeProcessCWD": true},
{"directory": "editors/UnitModelEditor", "changeProcessCWD": true}
],
"javascript.validate.enable": false,
"typescript.validate.enable": true,
"css.validate": false,
"scss.validate": false,
"less.validate": false,
"editor.wordWrapColumn": 120,
"editor.wordWrap": "off",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "always"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 4,
"editor.insertSpaces": false,
"javascript.format.enable": false,
"typescript.format.enable": false,
//
"json.format.enable": false,
"emmet.triggerExpansionOnTab": true,
"typescript.tsdk": "node_modules/typescript/lib",
},
"extensions": {
"recommendations": [
"styled-components.vscode-styled-components",
"EditorConfig.editorconfig",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"streetsidesoftware.code-spell-checker",
"codezombiech.gitignore",
"aaron-bond.better-comments",
"jasonnutter.search-node-modules",
"jock.svg",
"mikestead.dotenv",
"vscode-icons-team.vscode-icons"
]
}
}