Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2018-09-20 09:13:50 +0300
committerMike Greiling <mike@pixelcog.com>2018-09-20 10:39:50 +0300
commitf829b181bc9e4e24a093bfdc191656b944ca0fb0 (patch)
tree1544da41935f869e337f3bdae6e0730861c683b5 /.eslintrc.yml
parent0f50ba47fa7d726735918a181517fe50cda1f4bc (diff)
Resolve eslint-plugin-vue errors
The eslint-plugin-vue upgrade had some breaking changes to vue/attribute-order which needed to be resolved in order to avoid disabling the rule entirely
Diffstat (limited to '.eslintrc.yml')
-rw-r--r--.eslintrc.yml7
1 files changed, 7 insertions, 0 deletions
diff --git a/.eslintrc.yml b/.eslintrc.yml
index ba637649409..a954bb4ff37 100644
--- a/.eslintrc.yml
+++ b/.eslintrc.yml
@@ -90,3 +90,10 @@ rules:
- 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/html-closing-bracket-newline: off
+ vue/html-closing-bracket-spacing: off
+ 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