eslint的使用小技巧

1.使用規則

1.中文文檔 http://eslint.cn/docs/rules/javascript

2.關閉規則

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
  }
}

2.錯誤提示

1.Value must be omitted for boolean attributes

表示 默認 屬性是true 不須要設置 xxx={true}vue

相關文章
相關標籤/搜索