欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

eslint的使用小技巧

程序员文章站 2022-07-02 15:26:26
...

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}