Skip to content
.eslintrc.yml 984 B
Newer Older
Lukas Eipert's avatar
Lukas Eipert committed
extends:
Lukas Eipert's avatar
Lukas Eipert committed
globals:
  __webpack_public_path__: true
  gl: false
  gon: false
  localStorage: false
plugins:
  - import
  - html
settings:
  html/html-extensions:
    - '.html'
    - '.html.raw'
Lukas Eipert's avatar
Lukas Eipert committed
  import/resolver:
    webpack:
      config: './config/webpack.config.js'
Lukas Eipert's avatar
Lukas Eipert committed
rules:
  import/no-commonjs: error
  no-underscore-dangle:
    - error
    - allow:
Mike Greiling's avatar
Mike Greiling committed
  # Disabled for now, to make the airbnb-base 12.1.0 -> 13.1.0 update smoother
  no-else-return:
    - error
    - allowElseIf: true
  import/no-useless-path-segments: off
  lines-between-class-members: off
  # Disabled for now, to make the plugin-vue 4.5 -> 5.0 update smoother
  vue/no-confusing-v-for-v-if: error
  vue/no-unused-components: off
  vue/no-use-v-if-with-v-for: off
  vue/no-v-html: off
  # Disabled due to disagreements with prettier
  vue/html-closing-bracket-newline: off
  vue/html-closing-bracket-spacing: off
  vue/html-indent: off
  vue/max-attributes-per-line: off