Skip to content

Commit

Permalink
feat: Allow console.debug() (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
mfeltscher authored Nov 7, 2024
1 parent b82a564 commit 1c56a19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module.exports = {
'array-callback-return': 'error',
'no-debugger': 'error',
'no-alert': 'error',
'no-console': ['error', { allow: ['info', 'warn', 'error', 'trace', 'time', 'timeEnd'] }],
'no-console': ['error', { allow: ['debug', 'info', 'warn', 'error', 'trace', 'time', 'timeEnd'] }],
'newline-before-return': 'error',
'prefer-const': 'error',
'no-else-return': 'error',
Expand Down

0 comments on commit 1c56a19

Please sign in to comment.