Browse Source

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

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
pull/54656/head
Ferdinand Thiessen 3 months ago
parent
commit
f9030fce04
No known key found for this signature in database GPG Key ID: 45FAE7268762B400
  1. 7
      .eslintrc.js

7
.eslintrc.js

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