summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-02-14 12:36:04 +0300
committerValentin Popov <info@valentineus.link>2020-02-14 12:36:04 +0300
commit9527acd2afa5a32ba96fd8ae02ebd88277af89e9 (patch)
treec270637717061fad5d31265c8c6dd96ebad78765 /src
parent1776bfbec4017f328937b16a7ea752adbec45bea (diff)
downloadeslint-config-9527acd2afa5a32ba96fd8ae02ebd88277af89e9.tar.xz
eslint-config-9527acd2afa5a32ba96fd8ae02ebd88277af89e9.zip
feat(vue): Rule "html-self-closing"
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'src')
-rw-r--r--src/rules/vue/default.json12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/rules/vue/default.json b/src/rules/vue/default.json
index 07aaf6a..e2e92ef 100644
--- a/src/rules/vue/default.json
+++ b/src/rules/vue/default.json
@@ -46,6 +46,18 @@
"error",
"double"
],
+ "vue/html-self-closing": [
+ "error",
+ {
+ "html": {
+ "component": "always",
+ "normal": "always",
+ "void": "always"
+ },
+ "math": "always",
+ "svg": "always"
+ }
+ ],
"vue/script-indent": [
"error",
"tab",