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
No known key found for this signature in database
GPG Key ID: 45FAE7268762B400
1 changed files with
7 additions and
0 deletions
-
.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', |
|
|
|
}, |
|
|
|
}, |
|
|
|
], |
|
|
|
} |