eslint 人性化配置

Posted 贝尔塔猫

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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
  }
}

 

以上是关于eslint 人性化配置的主要内容,如果未能解决你的问题,请参考以下文章

报错:✘ http://eslint.org/docs/rules/indent Expected indentation of 0 s paces but found 2(代码片段

报错:✘ http://eslint.org/docs/rules/indent Expected indentation of 0 s paces but found 2(代码片段

在VSCode中配置代码自动 eslint 格式化(修改eslint规则eslint忽略文件)

新版vscode配置eslint自动格式化代码

vscode设置eslint自动保存代码格式化配置

vscode设置eslint自动保存代码格式化配置