2018-05-28 04:54:38 -04:00
|
|
|
extends:
|
2020-03-18 11:09:45 -04:00
|
|
|
- plugin:@gitlab/default
|
|
|
|
- plugin:@gitlab/i18n
|
2019-12-16 16:08:00 -05:00
|
|
|
- plugin:no-jquery/slim
|
2019-12-17 13:07:48 -05:00
|
|
|
- plugin:no-jquery/deprecated-3.4
|
2020-11-16 10:09:23 -05:00
|
|
|
- ./tooling/eslint-config/conditionally_ignore_ee.js
|
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:
|
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:
|
|
|
|
import/no-commonjs: error
|
2020-08-21 20:10:21 -04:00
|
|
|
import/no-default-export: off
|
2018-05-28 04:54:38 -04:00
|
|
|
no-underscore-dangle:
|
|
|
|
- error
|
|
|
|
- allow:
|
2018-10-09 11:25:53 -04:00
|
|
|
- __
|
|
|
|
- _links
|
2019-12-05 07:07:43 -05:00
|
|
|
import/no-unresolved:
|
|
|
|
- error
|
2020-04-29 20:09:37 -04:00
|
|
|
# Disabled for now, to make the airbnb-base 12.1.0 -> 13.1.0 update smoother
|
|
|
|
no-else-return:
|
|
|
|
- error
|
|
|
|
- allowElseIf: true
|
2018-09-19 18:42:20 -04:00
|
|
|
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-use-v-if-with-v-for: off
|
2020-08-26 05:10:16 -04:00
|
|
|
vue/no-v-html: error
|
2018-12-06 03:24:01 -05:00
|
|
|
vue/use-v-on-exact: off
|
2019-12-16 22:07:45 -05:00
|
|
|
# all offenses of no-jquery/no-animate-toggle are false positives ( $toast.show() )
|
2019-12-16 16:08:00 -05:00
|
|
|
no-jquery/no-animate-toggle: off
|
2019-12-17 13:07:48 -05:00
|
|
|
no-jquery/no-event-shorthand: off
|
2019-09-19 17:06:29 -04:00
|
|
|
no-jquery/no-serialize: error
|
2019-09-24 14:06:05 -04:00
|
|
|
promise/always-return: off
|
|
|
|
promise/no-callback-in-promise: off
|
2021-02-15 16:08:59 -05:00
|
|
|
'@gitlab/no-global-event-off': error
|
2021-02-04 04:09:30 -05:00
|
|
|
import/order:
|
2021-02-15 16:08:59 -05:00
|
|
|
- error
|
|
|
|
- groups:
|
|
|
|
- builtin
|
|
|
|
- external
|
|
|
|
- internal
|
|
|
|
- parent
|
|
|
|
- sibling
|
|
|
|
- index
|
|
|
|
pathGroups:
|
|
|
|
- pattern: ~/**
|
|
|
|
group: internal
|
|
|
|
- pattern: emojis/**
|
|
|
|
group: internal
|
|
|
|
- pattern: '{ee_,}empty_states/**'
|
|
|
|
group: internal
|
|
|
|
- pattern: '{ee_,}icons/**'
|
|
|
|
group: internal
|
|
|
|
- pattern: '{ee_,}images/**'
|
|
|
|
group: internal
|
|
|
|
- pattern: vendor/**
|
|
|
|
group: internal
|
|
|
|
- pattern: shared_queries/**
|
|
|
|
group: internal
|
|
|
|
- pattern: '{ee_,}spec/**'
|
|
|
|
group: internal
|
|
|
|
- pattern: '{ee_,}jest/**'
|
|
|
|
group: internal
|
|
|
|
- pattern: ee_else_ce/**
|
|
|
|
group: internal
|
|
|
|
- pattern: ee/**
|
|
|
|
group: internal
|
|
|
|
- pattern: ee_component/**
|
|
|
|
group: internal
|
|
|
|
- pattern: '{test_,}helpers/**'
|
|
|
|
group: internal
|
|
|
|
- pattern: test_fixtures/**
|
|
|
|
group: internal
|
|
|
|
alphabetize:
|
|
|
|
order: asc
|
2019-06-13 15:15:25 -04:00
|
|
|
overrides:
|
2020-02-18 04:09:24 -05:00
|
|
|
- files:
|
|
|
|
- '**/spec/**/*'
|
|
|
|
rules:
|
2021-02-15 16:08:59 -05:00
|
|
|
'@gitlab/require-i18n-strings': off
|
|
|
|
'@gitlab/no-runtime-template-compiler': off
|