29 lines
992 B
JSON
29 lines
992 B
JSON
{
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll": true
|
|
},
|
|
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
|
|
"javascript.format.placeOpenBraceOnNewLineForControlBlocks": false,
|
|
"javascript.format.placeOpenBraceOnNewLineForFunctions": false,
|
|
"typescript.format.insertSpaceBeforeFunctionParenthesis": true,
|
|
"typescript.format.placeOpenBraceOnNewLineForControlBlocks": false,
|
|
"typescript.format.placeOpenBraceOnNewLineForFunctions": false,
|
|
"vetur.format.defaultFormatter.html": "prettier",
|
|
"vetur.format.defaultFormatter.js": "prettier-eslint",
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"vetur.format.defaultFormatterOptions": {
|
|
|
|
"js-beautify-html": {
|
|
"wrap_attributes": "force-expand-multiline"
|
|
},
|
|
"prettyhtml": {
|
|
"printWidth": 100,
|
|
"singleQuote": false,
|
|
"wrapAttributes": false,
|
|
"sortAttributes": false
|
|
}
|
|
},
|
|
"vetur.format.defaultFormatter.ts": "prettier-tslint"
|
|
}
|