-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathfkui.code-workspace
39 lines (39 loc) · 1.09 KB
/
fkui.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
{
"folders": [
{
"name": "@fkui",
"path": ".",
},
],
"settings": {
"css.validate": false,
"less.validate": false,
"scss.validate": false,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"eslint.enable": true,
"prettier.requireConfig": true,
"editor.renderWhitespace": "boundary",
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
},
"jest.jestCommandLine": "npm exec jest --",
"jest.runMode": "on-demand",
},
"extensions": {
"recommendations": [
"christian-kohler.npm-intellisense",
"davidanson.vscode-markdownlint",
"dbaeumer.vscode-eslint",
"ecmel.vscode-html-css",
"editorconfig.editorconfig",
"esbenp.prettier-vscode",
"html-validate.vscode-html-validate",
"orta.vscode-jest",
"vue.volar",
],
},
}