aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-02-14 12:32:30 +0300
committerValentin Popov <info@valentineus.link>2020-02-14 12:32:30 +0300
commit1776bfbec4017f328937b16a7ea752adbec45bea (patch)
tree35c0dd789f85f4ed704163025292565788ed6b6b /src
parent7f0f6a0d5c429781ed4d70502cc033bedc33abaa (diff)
downloadeslint-config-1776bfbec4017f328937b16a7ea752adbec45bea.tar.xz
eslint-config-1776bfbec4017f328937b16a7ea752adbec45bea.zip
feat(vue): Rule "html-closing-bracket-spacing"
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'src')
-rw-r--r--src/rules/vue/default.json8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/rules/vue/default.json b/src/rules/vue/default.json
index e15ac29..07aaf6a 100644
--- a/src/rules/vue/default.json
+++ b/src/rules/vue/default.json
@@ -24,6 +24,14 @@
"singleline": "never"
}
],
+ "vue/html-closing-bracket-spacing": [
+ "error",
+ {
+ "endTag": "never",
+ "selfClosingTag": "always",
+ "startTag": "never"
+ }
+ ],
"vue/html-indent": [
"error",
"tab",