debian-mirror-gitlab/.eslintrc.yml

63 lines
1.8 KiB
YAML
Raw Normal View History

2019-05-05 18:10:48 +05:30
extends:
2020-04-22 19:07:51 +05:30
- plugin:@gitlab/default
- plugin:@gitlab/i18n
2020-01-01 13:55:28 +05:30
- plugin:no-jquery/slim
- plugin:no-jquery/deprecated-3.4
2021-01-29 00:20:46 +05:30
- ./tooling/eslint-config/conditionally_ignore_ee.js
2019-05-05 18:10:48 +05:30
globals:
__webpack_public_path__: true
gl: false
gon: false
localStorage: false
2019-09-30 21:07:59 +05:30
IS_EE: false
2019-05-05 18:10:48 +05:30
plugins:
2019-12-21 20:55:43 +05:30
- no-jquery
2019-05-05 18:10:48 +05:30
settings:
import/resolver:
webpack:
config: './config/webpack.config.js'
rules:
import/no-commonjs: error
2020-11-24 15:15:51 +05:30
import/no-default-export: off
2019-05-05 18:10:48 +05:30
no-underscore-dangle:
- error
- allow:
- __
- _links
2020-01-01 13:55:28 +05:30
import/no-unresolved:
- error
2020-05-24 23:13:21 +05:30
# Disabled for now, to make the airbnb-base 12.1.0 -> 13.1.0 update smoother
no-else-return:
- error
- allowElseIf: true
2019-05-05 18:10:48 +05:30
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-use-v-if-with-v-for: off
2020-11-24 15:15:51 +05:30
vue/no-v-html: error
2019-05-05 18:10:48 +05:30
vue/use-v-on-exact: off
2020-01-01 13:55:28 +05:30
# all offenses of no-jquery/no-animate-toggle are false positives ( $toast.show() )
no-jquery/no-animate-toggle: off
no-jquery/no-event-shorthand: off
2019-12-21 20:55:43 +05:30
no-jquery/no-serialize: error
promise/always-return: off
promise/no-callback-in-promise: off
2021-02-22 17:27:13 +05:30
"@gitlab/no-global-event-off": error
2021-03-08 18:12:59 +05:30
# BEGIN eslint-plugin-vue@7 overrides
# TODO: Remove these rules as part of
# https://gitlab.com/groups/gitlab-org/-/epics/5142. These are setting
# various vue lint rules as they were in eslint-plugin-vue@6, or disabling
# new ones, to ease migration to v7, so violations of each can be fixed
# separately.
vue/no-mutating-props: off
vue/one-component-per-file: off
vue/no-lone-template: off
vue/component-definition-name-casing: off
# END eslint-plugin-vue@7 overrides
2019-09-04 21:01:54 +05:30
overrides:
2020-03-13 15:44:24 +05:30
- files:
- '**/spec/**/*'
rules:
2020-04-22 19:07:51 +05:30
"@gitlab/require-i18n-strings": off