chore: fix eslint rules for non breaking spaces in Vue files

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
This commit is contained in:
Ferdinand Thiessen 2025-08-26 15:25:03 +02:00
parent 79184f3aed
commit f9030fce04
No known key found for this signature in database
GPG key ID: 45FAE7268762B400

View file

@ -49,5 +49,12 @@ module.exports = {
'@typescript-eslint/no-explicit-any': 'warn',
},
},
{
files: ['*.vue'],
rules: {
'no-irregular-whitespace': 'off',
'vue/no-irregular-whitespace': 'error',
},
},
],
}