32 lines
654 B
JSON
32 lines
654 B
JSON
{
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": true,
|
|
"source.fixAll.stylelint": true, // 开启stylelint自动修复
|
|
},
|
|
"editor.formatOnSave": true,
|
|
"eslint.validate": [
|
|
"javascript",
|
|
"javascriptreact",
|
|
"typescript",
|
|
"typescriptreact",
|
|
"html",
|
|
"vue",
|
|
"markdown",
|
|
"json",
|
|
"jsonc"
|
|
],
|
|
// 配置stylelint检查的文件类型范围
|
|
"stylelint.validate": [
|
|
"css",
|
|
"less",
|
|
"postcss",
|
|
"scss",
|
|
"sass",
|
|
"vue"
|
|
],
|
|
"stylelint.enable": true,
|
|
"css.validate": false,
|
|
"less.validate": false,
|
|
"scss.validate": false,
|
|
} |