Temporarily disable failing typescript rules

This commit is contained in:
Kasper Seweryn 2022-04-16 13:39:54 +02:00 committed by Georg Krause
commit a129f7f882
4 changed files with 9 additions and 5 deletions

View file

@ -22,6 +22,10 @@ module.exports = {
],
rules: {
'vue/no-v-html': 'off', // TODO: tackle this properly
'vue/no-use-v-if-with-v-for': 'off'
'vue/no-use-v-if-with-v-for': 'off',
// TODO: Enable typescript rules later
'@typescript-eslint/no-this-alias': 'off',
'@typescript-eslint/no-empty-function': 'off'
}
}