🔧 (eslint)

This commit is contained in:
2021-06-12 16:11:57 +02:00
parent 257dc0794b
commit 86e1fdb1bb

View File

@@ -28,7 +28,19 @@ module.exports = {
arrowParens: 'always' arrowParens: 'always'
} }
], ],
'vue/no-v-html': 'off' 'vue/no-v-html': 'off',
'no-restricted-imports': [
'error',
{
paths: [
{
name: 'vue-demi',
importNames: ['computed'],
message: 'Please use computed from vue instead.'
}
]
}
]
}, },
overrides: [ overrides: [
{ {