diff options
author | Filipa Lacerda <filipa@gitlab.com> | 2018-01-06 18:59:49 +0000 |
---|---|---|
committer | Filipa Lacerda <filipa@gitlab.com> | 2018-01-06 19:03:01 +0000 |
commit | cbdbb645234f330bfa0b73e9c1bd0bbf60d73b02 (patch) | |
tree | 5b7e2c952770ec02157da34a446a0ddbbf05cf4b /.eslintrc | |
parent | e9c6f58e7e554776ce1935b352bc5472d656c252 (diff) | |
download | gitlab-ce-cbdbb645234f330bfa0b73e9c1bd0bbf60d73b02.tar.gz |
[ci skip] Fix more eslint rules
Diffstat (limited to '.eslintrc')
-rw-r--r-- | .eslintrc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.eslintrc b/.eslintrc index 5b1e5bfd530..6dbe269e594 100644 --- a/.eslintrc +++ b/.eslintrc @@ -41,12 +41,11 @@ "vue/html-self-closing": ["error", { "html": { "void": "always", - "normal": "any", + "normal": "never", "component": "always" }, "svg": "always", - "math": "any" + "math": "always" }] - } } |