dev
truthhun 1 year ago
parent bb9d145073
commit 01eaf5f97f

1
.gitignore vendored

@ -7,7 +7,6 @@ go.sum
*.pb.go
*.pb.gw.go
*.pb.validate.go
.vscode
ginrpc*
dist
output

@ -0,0 +1,43 @@
{
// tab 4
"editor.tabSize": 4,
// 100
"editor.wordWrapColumn": 100,
//
"editor.formatOnSave": true,
// vscode
"breadcrumbs.enabled": true,
// prettier
"prettier.semi": false,
// prettier
"prettier.singleQuote": true,
// vue template
"vetur.format.defaultFormatter.html": "prettyhtml",
// markdown
"editor.renderControlCharacters": true,
// eslint
"eslint.autoFixOnSave": true,
// eslint
"eslint.validate": [
"vue",
"html",
"javascript",
"typescript",
"javascriptreact",
"typescriptreact"
],
// vetur
"vetur.format.defaultFormatterOptions": {
"prettier": {
"singleQuote": true,
"semi": false
}
},
// vue 使 prettier
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}
Loading…
Cancel
Save