From 8611a8add0278e25dbd4dfeb5aa625f6b6293083 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=98=89=E6=B6=B5?= Date: Sun, 19 Jan 2020 11:06:17 +0800 Subject: [PATCH] feat(eslint-config): should add self-closing for html void tags --- packages/vant-eslint-config/index.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/packages/vant-eslint-config/index.js b/packages/vant-eslint-config/index.js index eb7644d1b..147213acc 100644 --- a/packages/vant-eslint-config/index.js +++ b/packages/vant-eslint-config/index.js @@ -73,6 +73,14 @@ module.exports = { 'vue/name-property-casing': ['error', 'kebab-case'], 'vue/component-name-in-template-casing': ['error', 'kebab-case'], 'vue/html-closing-bracket-newline': 2, + 'vue/html-self-closing': [ + 'error', + { + html: { + void: 'always', + }, + }, + ], '@typescript-eslint/no-unused-vars': ['error'], }, };