diff options
author | Mike Greiling <mike@pixelcog.com> | 2018-09-20 01:13:50 -0500 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2018-09-20 02:39:50 -0500 |
commit | f829b181bc9e4e24a093bfdc191656b944ca0fb0 (patch) | |
tree | 1544da41935f869e337f3bdae6e0730861c683b5 /.eslintrc.yml | |
parent | 0f50ba47fa7d726735918a181517fe50cda1f4bc (diff) | |
download | gitlab-ce-f829b181bc9e4e24a093bfdc191656b944ca0fb0.tar.gz |
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.yml | 7 |
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 |