Skip to content

Commit 19ea563

Browse files
author
stewest
committed
tailwind
1 parent b20d6c1 commit 19ea563

1 file changed

Lines changed: 46 additions & 12 deletions

File tree

.vscode/settings.json

Lines changed: 46 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,34 @@
11
{
22
"breadcrumbs.enabled": true,
3-
"css.validate": true,
3+
"css.validate": false,
4+
"less.validate": false,
5+
"scss.validate": false,
46
"diffEditor.ignoreTrimWhitespace": false,
5-
"editor.detectIndentation": true,
67
"editor.tabSize": 2,
7-
"editor.insertSpaces": true,
88
"editor.autoIndent": "full",
9-
"editor.formatOnPaste": true,
9+
"editor.insertSpaces": true,
10+
"editor.formatOnPaste": false,
1011
"editor.formatOnSave": true,
12+
"editor.formatOnType": true,
13+
"editor.codeActionsOnSave": {
14+
"source.fixAll.eslint": "explicit",
15+
"source.fixAll.tslint": "explicit",
16+
"source.fixAll.stylelint": "explicit"
17+
},
1118
"editor.renderWhitespace": "boundary",
1219
"editor.wordWrapColumn": 80,
1320
"editor.wordWrap": "off",
14-
"editor.rulers": [
15-
80
21+
"editor.detectIndentation": true,
22+
"editor.rulers": [80],
23+
"editor.defaultFormatter": "esbenp.prettier-vscode",
24+
"tailwindCSS.hovers": true,
25+
"drupalSDCHelper.componentDirectories": [
26+
"public/themes/custom/*/components/**",
27+
"public/modules/custom/*/components/**"
1628
],
29+
"[twig]": {
30+
"editor.defaultFormatter": "mblode.twig-language-2"
31+
},
1732
"files.associations": {
1833
"*.inc": "php",
1934
"*.module": "php",
@@ -30,11 +45,30 @@
3045
"files.insertFinalNewline": true,
3146
"html.format.enable": true,
3247
"html.format.wrapLineLength": 80,
33-
"prettier.semi": true,
34-
"css.completion.completePropertyWithSemicolon": true,
35-
"scss.completion.completePropertyWithSemicolon": true,
36-
"scss.validate": false,
37-
"[scss]": {
38-
"editor.defaultFormatter": "esbenp.prettier-vscode"
48+
"explorer.excludeGitIgnore": true,
49+
"search.followSymlinks": false,
50+
"files.exclude": {
51+
"**/.cache": true,
52+
"**/.git": true,
53+
"**/node_modules": true,
54+
"**/vendor": true
55+
},
56+
"files.watcherExclude": {
57+
"**/.cache": true,
58+
"**/.git": true,
59+
"**/node_modules": true,
60+
"**/vendor": true
61+
},
62+
"search.exclude": {
63+
"**/.cache": true,
64+
"**/.git": true,
65+
"**/node_modules": true,
66+
"**/vendor": true
3967
},
68+
"tailwindcss-intellisense.trace.server": "messages",
69+
"[pcss]": {
70+
"editor.defaultFormatter": "bradlc.vscode-tailwindcss",
71+
"editor.formatOnSave": true,
72+
"editor.formatOnPaste": false
73+
}
4074
}

0 commit comments

Comments
 (0)