debian-mirror-gitlab/.eslintrc.yml

36 lines
798 B
YAML
Raw Normal View History

2018-11-08 19:23:39 +05:30
extends:
2018-12-13 13:39:08 +05:30
- '@gitlab'
2018-11-08 19:23:39 +05:30
globals:
__webpack_public_path__: true
gl: false
gon: false
localStorage: false
plugins:
- import
- html
settings:
html/html-extensions:
2018-12-13 13:39:08 +05:30
- '.html'
- '.html.raw'
2018-11-08 19:23:39 +05:30
import/resolver:
webpack:
2018-12-13 13:39:08 +05:30
config: './config/webpack.config.js'
2018-11-08 19:23:39 +05:30
rules:
import/no-commonjs: error
no-underscore-dangle:
- error
- allow:
2018-12-13 13:39:08 +05:30
- __
- _links
2018-12-05 23:21:45 +05:30
# 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