eslint配置首行缩进两个空格,export default不顶格

// https://eslint.org/docs/user-guide/configuring

module.exports = {
  root: true,
  parserOptions: {
    parser: 'babel-eslint'  // 解析器,这里我们使用babel-eslint
  },
  env: {
    browser: true,  // 预定义的全局变量,这里是浏览器环境
  },
  extends: [
    // https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
    // consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules.
    'plugin:vue/essential',
    // 'plugin:vue/recommended',  去掉了这句
    // https://github.com/standard/standard/blob/master/docs/RULES-en.md
    'standard' // 扩展,可以通过字符串或者一个数组来扩展规则
  ],
  // required to lint *.vue files
  plugins: [
    'vue'
  ],
  // add your custom rules here
  rules: {
    // allow async-await
    'generator-star-spacing': 'off',
    // allow debugger during development
    'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
    'space-before-function-paren': ["error", "never"],
    'indent': 'off', 新加了这句缩进为0
    'vue/script-indent': [ 新加了这句脚本缩进2空格
      'error',
      2,
      {
        'baseIndent': 1
      }
    ]
  }
}
复制代码

ESLint的规则有三种级别

  • “off”或者0: 不启用这个规则
  • “warn”或者1: 出现问题会有警告
  • “error”或者2: 出现问题会报错

eslint文件修改了一定要重新手动编译运行。


你可能感兴趣的:(eslint配置首行缩进两个空格,export default不顶格)