[-] Disable unused vars check

This commit is contained in:
Hykilpikonna
2021-12-10 14:27:09 -05:00
parent 1d696d9860
commit 3d63da24dd
+2 -1
View File
@@ -14,6 +14,7 @@ module.exports = {
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
"@typescript-eslint/ban-ts-comment": "off"
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-unused-vars": "off",
}
}