2018-05-28 04:54:38 -04:00
|
|
|
extends:
|
2018-10-16 17:35:40 -04:00
|
|
|
- '@gitlab'
|
2019-09-24 14:06:05 -04:00
|
|
|
- plugin:promise/recommended
|
2018-05-28 04:54:38 -04:00
|
|
|
globals:
|
|
|
|
__webpack_public_path__: true
|
|
|
|
gl: false
|
|
|
|
gon: false
|
|
|
|
localStorage: false
|
2019-07-04 07:36:49 -04:00
|
|
|
IS_EE: false
|
2018-05-28 04:54:38 -04:00
|
|
|
plugins:
|
|
|
|
- import
|
2019-06-13 15:15:25 -04:00
|
|
|
- "@gitlab/i18n"
|
2019-08-08 02:29:24 -04:00
|
|
|
- "@gitlab/vue-i18n"
|
2019-09-19 17:06:29 -04:00
|
|
|
- no-jquery
|
2018-05-28 04:54:38 -04:00
|
|
|
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:
|
2019-06-13 15:15:25 -04:00
|
|
|
"@gitlab/i18n/no-non-i18n-strings": error
|
2019-08-08 02:29:24 -04:00
|
|
|
"@gitlab/vue-i18n/no-bare-strings": error
|
|
|
|
"@gitlab/vue-i18n/no-bare-attribute-strings": error
|
2018-05-28 04:54:38 -04:00
|
|
|
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
|
2019-09-19 17:06:29 -04:00
|
|
|
no-jquery/no-ajax: error
|
|
|
|
no-jquery/no-ajax-events: error
|
|
|
|
no-jquery/no-load: error
|
|
|
|
no-jquery/no-load-shorthand: error
|
|
|
|
no-jquery/no-serialize: error
|
2019-09-24 14:06:05 -04:00
|
|
|
promise/always-return: off
|
|
|
|
promise/no-callback-in-promise: off
|
2019-06-13 15:15:25 -04:00
|
|
|
overrides:
|
|
|
|
files:
|
|
|
|
- '**/spec/**/*'
|
|
|
|
rules:
|
|
|
|
"@gitlab/i18n/no-non-i18n-strings": off
|