31 lines
1.0 KiB
JSON
31 lines
1.0 KiB
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",
|
|
"typescript.format.enable": false,
|
|
"prettier.configPath": "./package.json"
|
|
}
|