36 lines
850 B
JSON
36 lines
850 B
JSON
{
|
|
"typescript.tsdk": "./node_modules/typescript/lib",
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit",
|
|
"source.fixAll.stylelint": "explicit"
|
|
},
|
|
"[markdown]": {
|
|
"editor.formatOnSave": false
|
|
},
|
|
"[javascript]": {
|
|
"editor.formatOnSave": false
|
|
},
|
|
"[json]": {
|
|
"editor.formatOnSave": false
|
|
},
|
|
"[jsonc]": {
|
|
"editor.formatOnSave": false
|
|
},
|
|
"files.watcherExclude": {
|
|
"**/.git/*/**": true,
|
|
"**/node_modules/*/**": true,
|
|
"**/dist/*/**": true,
|
|
"**/coverage/*/**": true
|
|
},
|
|
"files.associations": {
|
|
"*.json": "jsonc",
|
|
".prettierrc": "jsonc",
|
|
".stylelintrc": "jsonc"
|
|
},
|
|
// Angular schematics 插件: https://marketplace.visualstudio.com/items?itemName=cyrilletuzi.angular-schematics
|
|
"ngschematics.schematics": [
|
|
"ng-alain"
|
|
]
|
|
}
|