eslint配置首行縮排兩個空格,export default不頂格

MayDo發表於2018-12-06
// 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檔案修改了一定要重新手動編譯執行。


相關文章