2018-05-28 04:54:38 -04:00
|
|
|
extends:
|
2018-10-16 17:35:40 -04:00
|
|
|
- '@gitlab'
|
2018-05-28 04:54:38 -04:00
|
|
|
globals:
|
|
|
|
__webpack_public_path__: true
|
|
|
|
gl: false
|
|
|
|
gon: false
|
|
|
|
localStorage: false
|
|
|
|
plugins:
|
|
|
|
- import
|
|
|
|
- html
|
|
|
|
settings:
|
|
|
|
import/resolver:
|
|
|
|
webpack:
|
2018-10-09 11:25:53 -04:00
|
|
|
config: './config/webpack.config.js'
|
2018-05-28 04:54:38 -04:00
|
|
|
rules:
|
|
|
|
import/no-commonjs: error
|
|
|
|
no-underscore-dangle:
|
|
|
|
- error
|
|
|
|
- allow:
|
2018-10-09 11:25:53 -04:00
|
|
|
- __
|
|
|
|
- _links
|
2018-09-19 18:42:20 -04:00
|
|
|
# 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
|
2018-09-20 02:13:50 -04:00
|
|
|
# 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
|
2018-12-06 03:24:01 -05:00
|
|
|
vue/use-v-on-exact: off
|