Skip to content

Commit

Permalink
eslint: disable no-console rule
Browse files Browse the repository at this point in the history
  • Loading branch information
nicov-iov committed May 20, 2024
1 parent 425b352 commit 9fcff4e
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 @@ -8,7 +8,7 @@ module.exports = {
'@vue/standard'
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-console': 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
},
parserOptions: {
Expand Down

0 comments on commit 9fcff4e

Please sign in to comment.