.eslintrc.yml 768 Bytes
Newer Older
Lukas Eipert's avatar
Lukas Eipert committed
1
extends:
2
  - '@gitlab'
Lukas Eipert's avatar
Lukas Eipert committed
3 4 5 6 7 8 9 10 11 12 13
globals:
  __webpack_public_path__: true
  gl: false
  gon: false
  localStorage: false
plugins:
  - import
  - html
settings:
  import/resolver:
    webpack:
14
      config: './config/webpack.config.js'
Lukas Eipert's avatar
Lukas Eipert committed
15 16 17 18 19
rules:
  import/no-commonjs: error
  no-underscore-dangle:
    - error
    - allow:
20 21
        - __
        - _links
Mike Greiling's avatar
Mike Greiling committed
22 23 24 25 26 27
  # 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
28 29 30 31 32
  # 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
33
  vue/use-v-on-exact: off