debian-mirror-gitlab/.eslintrc.yml

53 lines
1.3 KiB
YAML
Raw Normal View History

2019-05-05 18:10:48 +05:30
extends:
- '@gitlab'
2019-12-21 20:55:43 +05:30
- plugin:promise/recommended
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:
- import
2019-09-04 21:01:54 +05:30
- "@gitlab/i18n"
2019-10-12 21:52:04 +05:30
- "@gitlab/vue-i18n"
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:
2019-09-04 21:01:54 +05:30
"@gitlab/i18n/no-non-i18n-strings": error
2019-10-12 21:52:04 +05:30
"@gitlab/vue-i18n/no-bare-strings": error
"@gitlab/vue-i18n/no-bare-attribute-strings": error
2019-05-05 18:10:48 +05:30
import/no-commonjs: error
no-underscore-dangle:
- error
- allow:
- __
- _links
# 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
vue/use-v-on-exact: off
2019-12-21 20:55:43 +05:30
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
promise/always-return: off
promise/no-callback-in-promise: off
2019-09-04 21:01:54 +05:30
overrides:
files:
- '**/spec/**/*'
rules:
"@gitlab/i18n/no-non-i18n-strings": off