vscode vue 自动格式化代码及解决与eslint冲突问题
·
1.格式化代码保存自动修复
在vscode中打开设置中的setting.json
根据自己的需求加入相应的格式代码(以下是我加入的):
{
"terminal.integrated.shell.windows": "D:\\Program Files\\Git\\bin\\bash.exe",
"vetur.format.defaultFormatter.js": "vscode-typescript",
"vetur.format.defaultFormatter.html": "js-beautify-html",
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {
"wrap_attributes": "force-aligned"
// #vue组件中html代码格式化样式
},
"prettier": {
"singleQuote": true,
"semi": false
}
},
// VsCode内置了Emmet语法,在后缀为.html/.css中输入缩写后按Tab键即会自动生成相应代码
"emmet.showAbbreviationSuggestions": true,
"emmet.showExpandedAbbreviation": "always", // required to work with
// 在react的jsx中添加对emmet的支持
"emmet.includeLanguages": {
"jsx-sublime-babel-tags": "javascriptreact"
},
"files.associations": {
"*.tpl": "html",
"*.vue": "vue",
"*.css": "css"
},
// 配置emmet是否启用tab展开缩写
"emmet.triggerExpansionOnTab": true,
// 配置emmet对文件类型的支持,比如vue后缀文件按照html文件来进行emmet扩写
"emmet.syntaxProfiles": {
"vue-html": "html",
"vue": "html",
"javascript": "javascriptreact",
// xml类型文件默认都是单引号,开启对非单引号的emmet识别
"xml": {
"attr_quotes": "single"
}
},
"workbench.editor.enablePreview": true, // 默认根据文件类型预测空格数关闭
"files.autoSave": "onWindowChange",
// 细节,配置gitlen中git提交历史记录的信息显示情况
"gitlens.advanced.messages": {
"suppressFileNotUnderSourceControlWarning": true,
"suppressUpdateNotice": true
},
"editor.renderControlCharacters": true, // 控制器是否显示控制字符
"editor.renderWhitespace": "all", // 在空白字符上显示符号的方式
// eslint能够识别的文件后缀类型
"eslint.enable": true,
"eslint.autoFixOnSave": true,
"eslint.validate": [
"javascript",
{
"language": "vue",
"autoFix": true
},
"html",
"vue"
],
// #去掉代码结尾的分号
"prettier.semi": true,
// #使用带引号替代双引号
"prettier.singleQuote": true,
// #让函数(名)和后面的括号之间加个空格
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"explorer.confirmDragAndDrop": false,
"editor.formatOnPaste": false,
"editor.formatOnType": false,
"editor.fontSize": 16,
"editor.detectIndentation": false,
// 重新设定tabsize
"editor.tabSize": 2,
// git是否启用自动拉取
"git.autofetch": true,
"search.showLineNumbers": true,
"editor.suggestSelection": "first",
"javascript.updateImportsOnFileMove.enabled": "always",
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"terminal.integrated.rendererType": "dom",
"java.errors.incompleteClasspath.severity": "ignore",
"gitlens.gitCommands.skipConfirmations": [
"fetch:command",
"switch:command"
],
"gitlens.gitCommands.closeOnFocusOut": true,
"search.useGlobalIgnoreFiles": true,
"[javascript]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"fileheader.Author": "duyan",
"fileheader.LastModifiedBy": "duyan",
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"diffEditor.ignoreTrimWhitespace": false,
// 格式化stylus, 需安装Manta's Stylus Supremacy插件
"stylusSupremacy.insertColons": false, // 是否插入冒号
"stylusSupremacy.insertSemicolons": false, // 是否插入分好
"stylusSupremacy.insertBraces": false, // 是否插入大括号
"stylusSupremacy.insertNewLineAroundImports": false, // import之后是否换行
"stylusSupremacy.insertNewLineAroundBlocks": false,
"javascript.format.insertSpaceAfterConstructor": false // 两个选择器中是否换行
}
2.eslint格式取消
打开项目中的webpack.base.conf.js,将图上红框部分去掉再重新启动项目即可。
3.vue项目中vuter格式化和eslint冲突问题解决
如果要同时适配两种方式的代码格式化,需要解决解决以下问题:
(1)解决单双引号问题
解决:修改setting.json配置
"vetur.format.defaultFormatterOptions": {
"prettier": {
"singleQuote": true,
"semi": false
}
},
(2)保存后后台报错Missing space before function parentheses 函数后跟括号之间的空格问题
解决: 找到.eslintrc.js文件 在其中配置
rules: {
//函数之前的空格数–根据vuter格式化来设置多少
"rules": {
'generator-star-spacing':'off',
'no-debugger': process.env.NODE_ENV === 'production'?'error':'off',
'space-before-function-paren': ['error', 'never'],
"quotes": [1, "single"], //引号类型 `` "" ''
"space-before-function-paren": 0,
"no-console":"off"
}
4.vue3.0以后eslint设置如下
直接在项目中的.eslintrc.js中修改,如图:
具体内容如下:
/**
* Eslint 检查规则(A)
* "off" 或者 0 -- 关闭规则
* "warn" 或者 1 -- 将规则打开为警告(不影响退出代码)
* "error" 或者 2 -- 将规则打开为错误(触发时退出代码为 1)
*/
module.exports = {
root: true,//禁用持续查找(root)
parserOptions: {
parser: 'babel-eslint',//解析器(parser)
sourceType: 'module'//指定源代码存在的位置,script | module,默认为script
},
env: {
browser: true,//启用浏览器全局变量。
node: true,//Node.js全局变量和Node.js范围。
es6: true,// 启用ES6的功能。
},
// eslint:recommended:表示引入eslint的核心功能,并且报告一些常见的共同错误。
extends: ['plugin:vue/recommended', 'eslint:recommended'],
rules: {
/ vue.规范 /
///
// 设置每行最大属性数
'vue/max-attributes-per-line': [2, {
'singleline': 10, // 标签为单行时,每行最大属性数值为 10,默认值为 1
'multiline': {
'max': 1, // 标签为多行时,每行最大属性数字为 1,默认值为 1
'allowFirstLine': false // 不允许属性与该标记名称位于同一行,默认值为 false
}
}],
// 禁用多行标签内容需换行的校验
'vue/multiline-html-element-content-newline':'off',
// 组件 name 属性值必须使用帕斯卡命名法(单词首字母大写)
'vue/name-property-casing': ['error', 'PascalCase'],
// 禁用禁止使用 v-html 的校验
'vue/no-v-html': 'off',
"vue/prop-name-casing": [1, "camelCase"], // 在声明prop的时候,其命名应该始终使用驼峰命名
"vue/require-v-for-key": 1, // 给v-for设置键值,与key结合使用,可以高效的更新虚拟DOM
"vue/no-use-v-if-with-v-for": [2, {
"allowUsingIterationVar": false
}], // 不要把 v-if 和 v-for 用在同一个元素上——因为v-for 比 v-if 具有更高的优先级
"vue/order-in-components": [0, { // 组件/实例的选项的顺序
"order": [
"el",
"name",
"parent",
"functional",
["delimiters", "comments"],
["components", "directives", "filters"],
"extends",
"mixins",
"inheritAttrs",
"model",
["props", "propsData"],
"data",
"computed",
"watch",
"LIFECYCLE_HOOKS",
"methods",
["template", "render"],
"renderError"
]
}],
/ js.规范 /
///
'accessor-pairs': 2, // 在对象中强制使用getter/setter
'arrow-spacing': [2, { // 在箭头函数之前/之后需要空格
'before': true,
'after': true
}],
'block-spacing': [2, 'always'], // 在打开块之后和关闭块之前,禁止或强制执行块内部的空格
'brace-style': [1, '1tbs', { // 需要大括号样式
'allowSingleLine': true
}],
'camelcase': [0, { // 需要驼峰命名
'properties': 'always'
}],
'comma-dangle': [2, 'never'], // 要求或禁止使用尾随逗号;最后一个属性是不需要逗号
'comma-spacing': [2, { // 强制逗号旁边的间距: 左右一个空格
'before': false,
'after': true
}],
'comma-style': [2, 'last'], // 逗号风格
'constructor-super': 2, // 构建方法中使用super方法
'curly': [2, 'multi-line'],
'dot-location': [2, 'property'], // 在dot之前和之后强制换行
'eol-last': 2, // 在文件末尾要求或禁止换行
// ["error", "always", {"null": "ignore"}]
'eqeqeq': [0, "always", { "null": "ignore" }], // 是否使用全等
'generator-star-spacing': [2, { // 在生成器函数中强制执行*周围的间距
'before': true,
'after': true
}],
'handle-callback-err': [2, '^(err|error)$'], // 强制执行回调错误处理
'indent': [2, 2, { // 强制执行一致的缩进
'SwitchCase': 1
}],
'jsx-quotes': [2, 'prefer-single'], // 强制在JSX文件中一致使用单引号
'key-spacing': [2, { // 在对象属性中强制键和值之间的一致间距
'beforeColon': false,
'afterColon': true
}],
'keyword-spacing': [2, { // 关键字前后强制执行一致的间距
'before': true,
'after': true
}],
'new-cap': [2, { // 要求构造函数名称以大写字母开头
'newIsCap': true,
'capIsNew': false
}],
'new-parens': 2, // 调用不带参数的函数时需要括号
'no-array-constructor': 2, // 禁止阵列构建器
'no-caller': 2, // 禁止使用来电者/被叫者
'no-console': 'off', // 不允许使用控制台
'no-class-assign': 2, // 禁止修改类声明的变量
'no-cond-assign': 2, // 在条件语句中禁止赋值运算符
'no-const-assign': 2, // 禁止修改使用const声明的变量
'no-control-regex': 0, // 禁止正则表达式中的控制字符
'no-delete-var': 2, // 禁止删除变量
'no-dupe-args': 2, // 在函数定义中禁止重复参数
'no-dupe-class-members': 2, // 禁止在类成员中重复名称
'no-dupe-keys': 2, // 禁止对象重复声明属性
'no-duplicate-case': 2, // 规则禁止重复案例标签
'no-empty-character-class': 2, // 禁止在正则表达式中使用空字符类
'no-empty-pattern': 2, // 不允许空的解构模式
'no-eval': 2, // 禁止使用eval()
'no-ex-assign': 2, // 禁止在catch子句中重新分配异常
'no-extend-native': 2, // 禁止扩展原生对象
'no-extra-bind': 2, // 禁止不必要的功能绑定
'no-extra-boolean-cast': 2, // 禁止不必要的布尔类型转换
'no-extra-parens': [2, 'functions'], // 禁止不必要的括号
'no-fallthrough': 2, // 禁止太多陈述描述
'no-floating-decimal': 2, // 禁止浮动小数
'no-func-assign': 2, // 禁止重新分配函数声明
'no-implied-eval': 2, //禁止使用隐式eval
'no-inner-declarations': [2, 'functions'], // 禁止嵌套块中的变量或函数声明
'no-invalid-regexp': 2, // 禁止在RegExp中使用无效的正则表达式字符串
'no-irregular-whitespace': 2, // 不允许不规则的空白
'no-iterator': 2, // 禁止迭代器
'no-label-var': 2, // 禁止变量名称的标签
'no-labels': [2, { //禁止标签声明
'allowLoop': false,
'allowSwitch': false
}],
'no-lone-blocks': 2, // 禁止不必要的嵌套块
'no-mixed-spaces-and-tabs': 2, // 禁止使用混合空格和制表符进行缩进
'no-multi-spaces': 2, // 禁止多个空格
'no-multi-str': 2, // 禁止多行字符串
'no-multiple-empty-lines': [2, { // 禁止多个空行
'max': 1
}],
'no-native-reassign': 2, //不能重写native对象
'no-negated-in-lhs': 2,//in 操作符的左边不能有!
'no-new-object': 2,//禁止使用new Object()
'no-new-require': 2,//禁止使用new require
'no-new-symbol': 2,
'no-new-wrappers': 2,//禁止使用new创建包装实例,new String new Boolean new Number
'no-obj-calls': 2,//不能调用内置的全局对象,比如Math() JSON()
'no-octal': 2,//禁止使用八进制数字
'no-octal-escape': 2,//禁止使用八进制转义序列
'no-path-concat': 2,//node中不能使用__dirname或__filename做路径拼接
'no-proto': 2,//禁止使用__proto__属性
'no-redeclare': 2,//禁止重复声明变量
'no-regex-spaces': 2,//禁止在正则表达式字面量中使用多个空格 /foo bar/
'no-return-assign': [2, 'except-parens'],//return 语句中不能有赋值表达式
'no-self-assign': 2,
'no-self-compare': 2,//不能比较自身
'no-sequences': 2,//禁止使用逗号运算符
'no-shadow-restricted-names': 2,//严格模式中规定的限制标识符不能作为声明时的变量名使用
'no-spaced-func': 2,//函数调用时 函数名与()之间不能有空格
'no-sparse-arrays': 2,//禁止稀疏数组, [1,,2]
'no-this-before-super': 2,//在调用super()之前不能使用this或super
'no-throw-literal': 2,//禁止抛出字面量错误 throw "error";
'no-trailing-spaces': 2,//一行结束后面不要有空格
'no-undef': 0,//不能有未定义的变量
'no-undef-init': 2,//变量初始化时不能直接给它赋值为undefined
'no-unexpected-multiline': 2,//避免多行表达式
'no-unmodified-loop-condition': 2, // 禁止未修改的循环条件
'no-unneeded-ternary': [2, { // 当存在更简单的替代方案时,不允许三元运算符
'defaultAssignment': false
}],
'no-unreachable': 2, // 返回,抛出,继续和中断语句后禁止无法访问的代码
'no-unsafe-finally': 2, // 禁止finally块中的控制流语句
'no-unused-vars': [1, { // 禁止使用未声明的变量
'vars': 'all',
'args': 'none'
}],
'no-useless-call': 2, // 禁止不必要的call()和apply()方法
'no-useless-computed-key': 2, // 禁止在对象上使用不必要的计算属性键
'no-useless-constructor': 2, // 禁止不必要的构造方法
'no-useless-escape': 0, // 禁止不必要的转义用法
'no-whitespace-before-property': 2, // 在属性之前禁止空格
'no-with': 2,//禁用with
'one-var': 1,//连续声明
'operator-linebreak': [2, 'after', { // 为维护强制执行一致的换行方式
'overrides': {
'?': 'before',
':': 'before'
}
}],
'padded-blocks': [2, 'never'], // 在块内要求或禁止填充
'quotes': [2, 'single', {//引号类型 `` "" ''
'avoidEscape': true,
'allowTemplateLiterals': true
}],
'semi': [2, 'semi'],//语句强制分号结尾
'semi-spacing': [2, {
'before': false,
'after': true
}],
'space-before-blocks': [2, 'always'], // 不要存在多余的块空间
'space-before-function-paren': [2, 'never'],//函数定义时括号前面要不要有空格
'space-in-parens': [2, 'never'],//小括号里面要不要有空格
'space-infix-ops': 2,//中缀操作符周围要不要有空格
'space-unary-ops': [2, {//一元运算符的前/后要不要加空格
'words': true,
'nonwords': false
}],
'spaced-comment': [2, 'always', {//注释风格要不要有空格什么的
'markers': ['global', 'globals', 'eslint', 'eslint-disable', '*package', '!', ',']
}],
'template-curly-spacing': [2, 'never'],
'use-isnan': 2,//禁止比较时使用NaN,只能用isNaN()
'valid-typeof': 2,//必须使用合法的typeof的值
'wrap-iife': [2, 'any'],//立即执行函数表达式的小括号风格
'yield-star-spacing': [2, 'both'],
'yoda': [2, 'never'],//禁止尤达条件
'prefer-const': 1,//首选const
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,//禁止使用debugger
'object-curly-spacing': [2, 'always', {//大括号内是否允许不必要的空格
objectsInObjects: false
}],
'array-bracket-spacing': [2, 'never']//是否允许非空数组里面有多余的空格
}
}
更多推荐
已为社区贡献1条内容
所有评论(0)