diff options
Diffstat (limited to '.eslintrc.yml')
-rw-r--r-- | .eslintrc.yml | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/.eslintrc.yml b/.eslintrc.yml index 0639228fe51..f8bc2a3ae94 100644 --- a/.eslintrc.yml +++ b/.eslintrc.yml @@ -22,17 +22,16 @@ rules: - 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-unresolved: - error - ignore: # https://gitlab.com/gitlab-org/gitlab/issues/38226 - '^ee_component/' - import/no-useless-path-segments: off import/order: off + # Disabled for now, to make the airbnb-base 12.1.0 -> 13.1.0 update smoother + no-else-return: + - error + - allowElseIf: true 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 @@ -45,8 +44,6 @@ rules: no-jquery/no-serialize: error promise/always-return: off promise/no-callback-in-promise: off - # Make update to eslint@6 smoother: - prefer-object-spread: off overrides: - files: - '**/spec/**/*' |