-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.code-workspace
80 lines (80 loc) · 2.14 KB
/
config.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"eslint.alwaysShowStatus": true,
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"editor.formatOnSave": false,
"editor.formatOnPaste": true,
"eslint.validate": ["javascript"],
"files.exclude": {
".nuxt/": true,
"dist/": true,
"node_modules/": true,
"env/nuxt/cert/": true,
"output/": true,
"src/static/favicon/*": true,
"src/static/favicon/favicon.png": false,
"**/.idea": true,
"**/*.iml": true,
"**/out": true,
"**/gen": true,
"**/logs": true,
"**/*.log": true,
"**/.DS_Store": true,
"env/nuxt/config/global/favicon.json": true
},
"files.associations": {
".branchlintrc": "json",
".huskyrc": "json",
".postcssrc": "json",
".releaserc": "json",
".rolluprc": "javascript",
".stylelintrc": "json",
".vcmrc": "json",
"*.css": "postcss",
"*.pcss": "postcss"
}
},
"extensions": {
"recommendations": [
"aeschli.vscode-css-formatter",
"alefragnani.Bookmarks",
"balazs4.gitlab-pipeline-monitor",
"bhshawon.node-json-autocomplete",
"christian-kohler.npm-intellisense",
"christian-kohler.path-intellisense",
"CoenraadS.bracket-pair-colorizer",
"cstuder.gitlab-ci-validator",
"daixiangyu13.ivue",
"dariofuzinato.vue-peek",
"DavidAnson.vscode-markdownlint",
"dbaeumer.vscode-eslint",
"deerawan.vscode-dash",
"EditorConfig.EditorConfig",
"eg2.vscode-npm-script",
"formulahendry.auto-close-tag",
"formulahendry.auto-rename-tag",
"humao.rest-client",
"kisstkondoros.csstriggers",
"mgmcdermott.vscode-language-babel",
"michelemelluso.gitignore",
"mrmlnc.vscode-attrs-sorter",
"ms-vsliveshare.vsliveshare",
"npxms.hide-gitignored",
"octref.vetur",
"pflannery.vscode-versionlens",
"ricard.postcss",
"shekhardtu.vuejspack",
"steoates.autoimport",
"WallabyJs.quokka-vscode",
"wix.vscode-import-cost",
"yzhang.markdown-all-in-one"
]
}
}