1.中文文檔 http://eslint.cn/docs/rules/javascript
1.忽略縮進: 關閉tab和space形成的indent 縮進錯誤提示html
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 } }
Value must be omitted for boolean attributes
表示 默認 屬性是true
不須要設置 xxx={true}
vue