-
Notifications
You must be signed in to change notification settings - Fork 8
/
monorepo.code-workspace
193 lines (193 loc) · 4.91 KB
/
monorepo.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
{
"folders": [
{
"name": "inquirer",
"path": "packages/inquirer/"
},
{
"name": "api/json",
"path": "packages/api/json/"
},
{
"name": "@modern-js/codesmith-api-app",
"path": "packages/api/app/"
},
{
"name": "@modern-js/codesmith-api-npm",
"path": "packages/api/npm/"
},
{
"name": "@modern-js/codesmith-api-git",
"path": "packages/api/git/"
},
{
"name": "@modern-js/codesmith-api-fs",
"path": "packages/api/fs/"
},
{
"name": "@modern-js/codesmith-api-handlebars",
"path": "packages/api/handlebars/"
},
{
"name": "@modern-js/codesmith-cli",
"path": "packages/cli/"
},
{
"name": "@modern-js/codesmith",
"path": "packages/core/"
},
{
"name": "codesmith",
"path": "."
}
],
"settings": {
"files.associations": {
".code-workspace": "jsonc",
".babelrc": "json",
".eslintrc": "jsonc",
".eslintrc*.json": "jsonc",
".stylelintrc": "jsonc",
"stylelintrc": "jsonc",
".htmlhintrc": "jsonc",
"htmlhintrc": "jsonc",
"Procfile*": "shellscript",
"README": "markdown"
},
"files.exclude": {
"**/*/adapters/**/index.ts": true,
"**/*/adapters/**/index.js": true
},
"search.useIgnoreFiles": true,
"search.exclude": {
"**/build": true,
"**/output": true,
"**/dist": true,
"**/yarn.lock": true,
"**/package-lock.json": true,
"**/*.log": true,
"**/*.pid": true,
"**/.git": true,
"**/node_modules": true,
"**/bower_components": true
},
//
"editor.rulers": [80, 120],
"files.eol": "\n",
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
//
"todo-tree.general.tags": ["TODO:", "FIXME:"],
"todo-tree.highlights.defaultHighlight": {
"gutterIcon": true
},
"todo-tree.highlights.customHighlight": {
"TODO:": {
"foreground": "#fff",
"background": "#ffbd2a",
"iconColour": "#ffbd2a"
},
"FIXME:": {
"foreground": "#fff",
"background": "#f06292",
"icon": "flame",
"iconColour": "#f06292"
}
},
//
"cSpell.diagnosticLevel": "Hint",
"[javascript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[javascriptreact]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[typescript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[typescriptreact]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[vue]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"eslint.alwaysShowStatus": true,
// "eslint.nodePath": "./node_modules",
// "eslint.packageManager": "yarn",
"eslint.run": "onType",
"eslint.options": {
"rules": {
"no-debugger": "off"
}
},
"eslint.probe": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue"
],
"eslint.format.enable": true,
"eslint.lintTask.enable": true,
"javascript.validate.enable": false,
"typescript.validate.enable": true,
"flow.enabled": false,
//
"htmlhint.enable": true,
//
"stylelint.enable": false,
"css.validate": false,
"scss.validate": false,
"less.validate": false,
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnType": true,
"editor.formatOnPaste": true,
"editor.formatOnSave": true
},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnType": true,
"editor.formatOnPaste": true,
"editor.formatOnSave": true
},
"[less]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnType": true,
"editor.formatOnPaste": true,
"editor.formatOnSave": true
},
"prettier.trailingComma": "all",
"prettier.printWidth": 80,
"prettier.semi": true,
"prettier.arrowParens": "avoid",
"prettier.bracketSpacing": true,
"prettier.jsxBracketSameLine": true,
//
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.codeActionsOnSaveTimeout": 5000,
"javascript.format.enable": false,
"typescript.format.enable": false,
//
"json.format.enable": false,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2,
"editor.formatOnType": true,
"editor.formatOnPaste": true,
"editor.formatOnSave": true
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2,
"editor.formatOnType": true,
"editor.formatOnPaste": true,
"editor.formatOnSave": true
},
"emmet.triggerExpansionOnTab": true,
"typescript.tsdk": "node_modules/typescript/lib",
"deno.enable": false
}
}