wx-guyantv/.vscode/settings.json
2024-12-27 17:35:38 +08:00

26 lines
898 B
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"eslint.validate": [
"javascript",
"javascriptreact",
"html",
"vue"
],
"stylelint.snippet": ["css", "less", "postcss", "scss", "vue"],
"stylelint.validate": ["css", "less", "postcss", "vue", "scss"],
//保存的时候自动格式化
"editor.formatOnSave": true,
// 关闭编辑器内置样式检查避免与stylelint冲突
"css.validate": false,
"less.validate": false,
"scss.validate": false,
"stylelint.enable": true,
// "stylelint.customSyntax": "postcss-scss", //postcss-scss只能自动修复.scss或.css后缀的文件
// "stylelint.customSyntax": "postcss-html", //postcss-html只能自动修复.vue或者html文件
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.fixAll.eslint": "explicit",
"source.fixAll.stylelint": "explicit"
},
"stylelint.configFile": ".stylelintrc.js",
"stylelint.config": null
}