|
4 | 4 | "less.validate":false, |
5 | 5 | "scss.validate":false, |
6 | 6 | "html.validate.styles":false, |
| 7 | +// Markdown |
| 8 | +"markdownlint.ignore": [ |
| 9 | +"CHANGELOG.md" |
| 10 | + ], |
7 | 11 | // ESLint |
8 | | -"eslint.enable":true, |
9 | 12 | "eslint.alwaysShowStatus":true, |
10 | 13 | "eslint.options": { |
11 | 14 | "extensions": [ |
12 | 15 | ".js", |
13 | 16 | ".vue" |
14 | 17 | ] |
15 | 18 | }, |
| 19 | +"editor.codeActionsOnSave": { |
| 20 | +"source.fixAll.eslint":true, |
| 21 | +"source.fixAll.stylelint":true |
| 22 | + }, |
16 | 23 | "stylelint.enable":true, |
| 24 | +"stylelint.snippet": [ |
| 25 | +"css", |
| 26 | +"less", |
| 27 | +"postcss", |
| 28 | +"sass", |
| 29 | +"scss", |
| 30 | +"stylus" |
| 31 | + ], |
17 | 32 | // Vue |
18 | 33 | "vetur.format.styleInitialIndent":true, |
| 34 | +"vetur.validation.template":false, |
| 35 | +"vetur.format.defaultFormatter.css":"prettier", |
| 36 | +"vetur.format.defaultFormatter.scss":"prettier", |
19 | 37 | "vetur.format.defaultFormatter.js":"prettier-eslint", |
20 | 38 | "vetur.format.defaultFormatter.ts":"prettier-tslint", |
21 | | -"prettier.singleQuote":true, |
22 | | -"prettier.tabWidth":4, |
23 | | -"prettier.trailingComma":"all", |
24 | | -"prettier.printWidth":120, |
25 | | -"prettier.jsxSingleQuote":true, |
| 39 | +"vetur.format.options.tabSize":4, |
| 40 | +"prettier.vueIndentScriptAndStyle":true, |
| 41 | +"vetur.experimental.templateInterpolationService":true, |
26 | 42 | // Colors |
27 | 43 | "workbench.colorCustomizations": { |
28 | 44 | "activityBar.background":"#65c89b", |
|
41 | 57 | "activityBar.activeBackground":"#65c89b" |
42 | 58 | }, |
43 | 59 | "peacock.color":"#42b883", |
| 60 | +// Dictionary |
| 61 | +"cSpell.language":"en,it", |
| 62 | +"cSpell.allowCompoundWords":true, |
| 63 | +"cSpell.ignorePaths": [ |
| 64 | +".vscode", |
| 65 | +".git", |
| 66 | +".nuxt", |
| 67 | +"coverage", |
| 68 | +"dist", |
| 69 | +"ssr", |
| 70 | +"node_modules", |
| 71 | +"bower_components" |
| 72 | + ], |
44 | 73 | "cSpell.words": [ |
45 | | -"iaconelli", |
46 | | -"lerps", |
47 | | -"luxdamore", |
48 | | -"otechie", |
49 | | -"patreon", |
50 | | -"paypal", |
51 | | -"preload", |
52 | | -"tympanus" |
| 74 | +"codrops" |
53 | 75 | ], |
54 | | -"editor.codeActionsOnSave": { |
55 | | -"source.fixAll.eslint":true |
56 | | - }, |
57 | | -"cSpell.ignoreWords": [ |
58 | | -"dataset", |
59 | | -"hljs", |
60 | | -"posx" |
61 | | - ] |
| 76 | +"cSpell.ignoreWords": [] |
62 | 77 | } |