赞
踩
Eslint有的时候真的太严格了,虽然是好事,但是有的时候我们接手别人的代码,人家的代码之前写的就很不规范,结果我们这边只要一保存运行就各种报错,对于别人的代码要改规范,也挺麻烦的 ,有时候项目紧张、任务重,没办法,直接关闭校验吧,只能这么简单粗暴了!!!
关闭段落校验
/* eslint-disable */
代码块
/* eslint-enable */
关闭当前行校验
一行代码 // eslint-disable-line
关闭下一行校验
// eslint-disable-next-line
下一行的代码
关闭对这单一文件的校验
在文件头部加上注释,eslint在校验的时候会跳过后续的代码
/* eslint-disable */
整个项目都关闭
创建.eslintrc.js
写入如下代码
module.exports = {
"env": {
"browser": true,
"es6": true
},
"extends": "plugin:vue/essential",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"vue"
],
"rules": {
"generator-star-spacing": "off",
"no-tabs":"off",
"no-unused-vars":"off",
"no-console":"off",
"no-irregular-whitespace":"off",
"no-debugger": "off"
}
};
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。