Skip to content

Commit

Permalink
chore(FDS-272): [@espressive/eslint-config] - relax no-console rule i…
Browse files Browse the repository at this point in the history
…n develop
  • Loading branch information
Manu Ramirez committed Sep 13, 2021
1 parent 379427d commit 98592aa
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified .yarn/install-state.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion utils/eslint-config/src/rules/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ module.exports = {
eqeqeq: 'error',
'multiline-comment-style': ['error', 'separate-lines'],
'no-alert': 'error',
'no-console': 'error',
'no-console': process.env.NODE_ENV === 'development' ? 0 : 'error',
'no-duplicate-imports': 'error',
'no-implicit-coercion': 'error',
'no-undef-init': 'error',
Expand Down

0 comments on commit 98592aa

Please sign in to comment.