为了最大化的规避错误,在项目开发中开启了eslint
(vue-cli webpack
),但现在动不动就报错
有没有遇到严重点的错误才报错,比如变量没有 var,let 之类,不要什么行尾没有空格之类的错误报出来
而且一个一个改写 eslintrc 也很麻烦,有没有现成的,谢谢大家
现在的 eslintrc 为
// http://eslint.org/docs/user-guide/configuring
module.exports = {
root: true,
parser: 'babel-eslint',
parserOptions: {
sourceType: 'module'
},
env: {
browser: true,
},
// https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
extends: 'standard',
// required to lint *.vue files
plugins: [
'html'
],
// add your custom rules here
'rules': {
"skipBlankLines": true,
// allow paren-less arrow functions
'arrow-parens': 0,
// allow async-await
'generator-star-spacing': 0,
// allow trace blank
"skipBlankLines": 0,
// allow one line brace
"brace-style": [2, "stroustrup", { "allowSingleLine": true }],
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0
}
}
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.