12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- {
-
- "editor.detectIndentation": false,
-
- "editor.tabSize": 2,
-
- "editor.formatOnSave": true,
-
- "editor.codeActionsOnSave": {
-
- "source.fixAll": true
- },
-
- "diffEditor.ignoreTrimWhitespace": false,
- "[vue]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "[javascript]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "[html]": {
- "editor.defaultFormatter": "vscode.html-language-features"
- },
- "[json]": {
- "editor.defaultFormatter": "vscode.json-language-features"
- },
- "[css]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "[stylus]": {
- "editor.defaultFormatter": "thisismanta.stylus-supremacy"
- },
-
- "stylusSupremacy.insertColons": true,
- "stylusSupremacy.insertSemicolons": true,
- "stylusSupremacy.insertBraces": true,
- "stylusSupremacy.insertNewLineAroundImports": true,
- "stylusSupremacy.insertNewLineAroundBlocks": false,
-
- "html.format.wrapLineLength": 80,
-
- "javascript.format.insertSpaceBeforeFunctionParenthesis": false,
-
- "vetur.format.defaultFormatterOptions": {
- "prettier": {
- "semi": false,
- "singleQuote": true,
- "trailingComma": "none"
- }
- },
-
-
- "prettier.printWidth": 80,
-
- "prettier.semi": false,
-
- "prettier.singleQuote": true,
-
- "prettier.trailingComma": "none",
-
- "prettier.arrowParens": "avoid"
- }
|