[-] Disable ts-ignore ban

This commit is contained in:
Hykilpikonna
2021-12-07 00:26:41 -05:00
parent 34b677737f
commit d6585b335b
+2 -1
View File
@@ -13,6 +13,7 @@ module.exports = {
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
"@typescript-eslint/ban-ts-comment": "off"
}
}