Skip to content

Commit

Permalink
Allowed console statements
Browse files Browse the repository at this point in the history
Need to add a logger and remove all the console statements
  • Loading branch information
adityasharma7 authored May 17, 2022
1 parent 2a2a060 commit 71a8185
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 = {
parser: '@typescript-eslint/parser'
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-console': 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'vue/no-deprecated-slot-attribute': 'off',
'@typescript-eslint/no-explicit-any': 'off',
Expand Down

0 comments on commit 71a8185

Please sign in to comment.