|
1 | 1 | { |
2 | 2 | "breadcrumbs.enabled": true, |
3 | | - "css.validate": true, |
| 3 | + "css.validate": false, |
| 4 | + "less.validate": false, |
| 5 | + "scss.validate": false, |
4 | 6 | "diffEditor.ignoreTrimWhitespace": false, |
5 | | - "editor.detectIndentation": true, |
6 | 7 | "editor.tabSize": 2, |
7 | | - "editor.insertSpaces": true, |
8 | 8 | "editor.autoIndent": "full", |
9 | | - "editor.formatOnPaste": true, |
| 9 | + "editor.insertSpaces": true, |
| 10 | + "editor.formatOnPaste": false, |
10 | 11 | "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 | + }, |
11 | 18 | "editor.renderWhitespace": "boundary", |
12 | 19 | "editor.wordWrapColumn": 80, |
13 | 20 | "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/**" |
16 | 28 | ], |
| 29 | + "[twig]": { |
| 30 | + "editor.defaultFormatter": "mblode.twig-language-2" |
| 31 | + }, |
17 | 32 | "files.associations": { |
18 | 33 | "*.inc": "php", |
19 | 34 | "*.module": "php", |
|
30 | 45 | "files.insertFinalNewline": true, |
31 | 46 | "html.format.enable": true, |
32 | 47 | "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 |
39 | 67 | }, |
| 68 | + "tailwindcss-intellisense.trace.server": "messages", |
| 69 | + "[pcss]": { |
| 70 | + "editor.defaultFormatter": "bradlc.vscode-tailwindcss", |
| 71 | + "editor.formatOnSave": true, |
| 72 | + "editor.formatOnPaste": false |
| 73 | + } |
40 | 74 | } |
0 commit comments