Stop ignoring console errors

This commit is contained in:
William Oldham
2024-03-19 17:17:42 +00:00
parent 83e18900a9
commit 3d5ce44aa3
3 changed files with 5 additions and 1 deletions

View File

@@ -22,7 +22,7 @@ module.exports = {
'no-bitwise': 'off',
'no-underscore-dangle': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'no-console': 'off',
'no-console': ['error', { allow: ['warn', 'error'] }],
'@typescript-eslint/no-this-alias': 'off',
'import/prefer-default-export': 'off',
'@typescript-eslint/no-empty-function': 'off',