diff --git a/internal/lint-configs/eslint-config/src/configs/vue.ts b/internal/lint-configs/eslint-config/src/configs/vue.ts index edd576888..b42026746 100644 --- a/internal/lint-configs/eslint-config/src/configs/vue.ts +++ b/internal/lint-configs/eslint-config/src/configs/vue.ts @@ -85,7 +85,13 @@ export async function vue(): Promise { 'vue/dot-location': ['error', 'property'], 'vue/dot-notation': ['error', { allowKeywords: true }], 'vue/eqeqeq': ['error', 'smart'], - 'vue/html-closing-bracket-newline': 'error', + 'vue/html-closing-bracket-newline': [ + 'error', + { + multiline: 'never', + selfClosingTag: { multiline: 'never' }, + }, + ], 'vue/html-indent': 'off', // 'vue/html-indent': ['error', 2], 'vue/html-quotes': ['error', 'double'],