eslint 人性化配置

错误列表:

http://www.zystudios.cn/blog/post/70.Shtml

人性化一点。别老虐我啊晓梦大师

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': {
    // 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,
    // 李钊鸿:允许tab缩进
    "no-tabs":"off",
    // 关闭tab或space造成的indent缩进错误
    'indent': 0
  }
}
原文地址:https://www.cnblogs.com/CyLee/p/6546907.html