1.使用规则
1.中文文档 http://eslint.cn/docs/rules/
2.关闭规则
1.忽略缩进: 关闭tab和space造成的indent 缩进错误提示
module.exports = {
root: true,
parser: 'babel-eslint',
parserOptions: {
sourceType: 'module'
},
// 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': {
'indent': 0 // 忽略indent
}
}
2.错误提示
1.Value must be omitted for boolean attributes
表示 默认 属性是true
不需要设置 xxx={true}