-
Notifications
You must be signed in to change notification settings - Fork 1
/
docs-generator.code-workspace
43 lines (43 loc) · 1.15 KB
/
docs-generator.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
{
"folders": [
{
"path": ".",
"name": "@forsakringskassan/docs-generator",
},
],
"settings": {
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
},
"eslint.enable": true,
"prettier.requireConfig": true,
"editor.renderWhitespace": "boundary",
"eslint.alwaysShowStatus": true,
"prettier.disableLanguages": [],
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue",
"html",
],
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
},
"extensions": {
"recommendations": [
"christian-kohler.npm-intellisense",
"dbaeumer.vscode-eslint",
"ecmel.vscode-html-css",
"EditorConfig.EditorConfig",
"eg2.vscode-npm-script",
"esbenp.prettier-vscode",
"octref.vetur",
"jebbs.plantuml",
],
},
}