eslint 在vscode中的配置项 setting.json 修改
vue 项目中,eslint 校验会使 vue项目报错,通过配置 setting.json
·
vue 项目中,eslint 校验会使 vue项目跑不起来,通过配置VSCode中的 setting.json 可解决
步骤如下
- 打开
VSCode
,Ctrl + Shift + P
后搜索setting
, 点击Preferences: Open Settings (JSON)
- 复制以下代码,覆盖原有代码
{
"editor.fontSize": 16,
"eslint.autoFixOnSave": true,
"fileheader.LastModifiedBy": "xudanfeng",
"fileheader.Author": "xudanfeng",
"git.autofetch": true,
"[html]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"editor.detectIndentation": false,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"vetur.validation.template": false, // 标签报错
// 添加 vue 支持
"eslint.validate": [
{
"language": "vue",
"autoFix": true
},
{
"language": "html",
"autoFix": true
},
{
"language": "javascript",
"autoFix": true
},
{
"language": "typescript",
"autoFix": true
},
],
// "prettier.eslintIntegration": true,
// // #去掉代码结尾的分号
"prettier.semi": false,
// // #使用带引号替代双引号
// "prettier.singleQuote": true,
// #让函数(名)和后面的括号之间加个空格
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
// 保存缩进空格2
"editor.tabSize": 2,
// #这个按用户自身习惯选择
"vetur.format.defaultFormatter.html": "js-beautify-html",
// #让vue中的js按编辑器自带的ts格式进行格式化
"vetur.format.defaultFormatter.js": "vscode-typescript",
"vetur.format.defaultFormatterOptions": {
"prettier": {
"semi": false
},
"js-beautify-html": {
"wrap_attributes": "auto"
// #vue组件中html代码格式化样式
// - auto: 仅在超出行长度时才对属性进行换行。
// - force: 对除第一个属性外的其他每个属性进行换行。
// - force-aligned: 对除第一个属性外的其他每个属性进行换行,并保持对齐。
// - force-expand-multiline: 对每个属性进行换行。
// - aligned-multiple: 当超出折行长度时,将属性进行垂直对齐。
}
},
// 格式化stylus, 需安装Manta's Stylus Supremacy插件
// "stylusSupremacy.insertColons": false, // 是否插入冒号
// "stylusSupremacy.insertSemicolons": false, // 是否插入分好
// "stylusSupremacy.insertBraces": false, // 是否插入大括号
// "stylusSupremacy.insertNewLineAroundImports": false, // import之后是否换行
// "stylusSupremacy.insertNewLineAroundBlocks": false,
"typescript.format.insertSpaceAfterSemicolonInForStatements": false,
"workbench.colorTheme": "Monokai Dimmed",
"window.zoomLevel": 0,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"files.autoSaveDelay": 100, // 两个选择器中是否换行
// 之前使用的是syntaxProfiles
// 新版Emmet中syntaxProfiles应该只用来决定最后输出
// 而给其他文件类型添加支持应该要放到新的配置项includeLanguages里
"emmet.includeLanguages": {
"vue-html": "html",
"vue": "html",
"wxml": "html"
},
"files.associations": {
"*.cjson": "jsonc",
"*.wxss": "css",
"*.wxs": "javascript",
"*.vue": "vue"
},
"minapp-vscode.disableAutoConfig": true
}
- 添加后,即可自动格式化
.vue
中的js
、html
、css
更多推荐
已为社区贡献6条内容
所有评论(0)