-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgp-boilerplate.code-workspace
64 lines (64 loc) · 1.49 KB
/
gp-boilerplate.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.formatOnSave": false,
"emmet.includeLanguages": {
"postcss": "css"
},
"emmet.syntaxProfiles": {
"postcss": "css"
},
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"html.format.enable": true,
"html.format.indentHandlebars": true,
"html.format.maxPreserveNewLines": 0,
"files.exclude": {
"build/": false,
"production/": false,
"dev/": false,
"node_modules/": false,
"**/.idea": true,
"**/*.iml": true,
"**/out": true,
"**/gen": true,
"**/logs": true,
"**/*.log": true,
"**/.DS_Store": true
},
"files.associations": {
".branchlintrc": "json",
".huskyrc": "json",
".lintstagedrc": "json",
".postcssrc": "json",
".releaserc": "json",
".stylelintrc": "json",
".vcmrc": "json",
"*.css": "postcss",
"*.pcss": "postcss",
".*ignore": "ignore",
"*.js.tmpl": "javascript",
"*.html.tmpl": "html"
}
},
"extensions": {
"recommendations": [
"codezombiech.gitignore",
"davidanson.vscode-markdownlint",
"dbaeumer.vscode-eslint",
"editorconfig.editorconfig",
"naumovs.color-highlight",
"ricard.postcss",
"stylelint.vscode-stylelint",
"tomesterez.style-vars-panel",
"wayou.vscode-todo-highlight",
"yzhang.markdown-all-in-one",
"zignd.html-css-class-completion"
]
}
}