feat(eslint-config): should add self-closing for html void tags

This commit is contained in:
陈嘉涵 2020-01-19 11:06:17 +08:00
parent 27c229d733
commit 8611a8add0

View File

@ -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'],
},
};