chore(eslint): disable `console` warning

This commit is contained in:
郭桓桓 2023-02-05 12:33:13 +08:00
parent 30c75a2410
commit 48c6d8fbde
No known key found for this signature in database
GPG Key ID: FD846A0A797B0D75
1 changed files with 0 additions and 2 deletions

View File

@ -12,8 +12,6 @@ module.exports = {
ecmaVersion: 2020
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
// 忽略使用 any 型別的警告
"@typescript-eslint/no-explicit-any": "off"
}