我已经设置了基本的Vue.js 2 Quickstart应用。我想要的东西之一是eslint。这很好,但作为一个Java开发人员,在行尾没有半导体就是亵渎神灵。所以我将这个规则添加到我的.eslintrc.js文件中:
// add your custom rules here
'rules': {
'semi': "always",
// allow paren-less arrow functions
'arrow-parens': 0,
// allow async-await
'generator-star-spacing': 0,
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0
}
然而,当我保存它时,我收到此错误:
Error: /asdf/code/vue/.eslintrc.js: Configuration for rule "semi" is invalid: Severity should be one of the following: 0 = off, 1 = warn, 2 = error (you passed '"always"').
与此处的文档不符:ESLint Rules
如果有所不同,我正在使用Atom。
我确实试过使用" 0"但这实际上没有固定原子告诉我到处都有一个分号。