-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.code-workspace
executable file
·87 lines (87 loc) · 2.29 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
81
82
83
84
85
86
87
{
"folders": [
{
"path": "."
}
],
"settings": {
"eslint.autoFixOnSave": true,
"eslint.alwaysShowStatus": true,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"eslint.validate": [
"javascript",
"javascriptreact",
{
"language": "vue",
"autoFix": true
}
],
"prettier.eslintIntegration": true,
"prettier.stylelintIntegration": true,
"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": {
".postcssrc": "json",
".releaserc": "json",
".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",
"esbenp.prettier-vscode",
"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",
"robertohuertasm.vscode-icons",
"shekhardtu.vuejspack",
"shinnn.stylelint",
"steoates.autoimport",
"WallabyJs.quokka-vscode",
"wix.vscode-import-cost",
"yzhang.markdown-all-in-one"
]
}
}