We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6019984 commit 60826b7Copy full SHA for 60826b7
index.js
@@ -40,6 +40,7 @@ module.exports = {
40
41
// Allow debugger during development
42
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
43
+ 'no-console': process.env.NODE_ENV === 'production' ? 2 : 0,
44
45
// Prefer const over let
46
'prefer-const': [2, {
@@ -62,7 +63,6 @@ module.exports = {
62
63
'no-var': 2,
64
65
// Do not allow console.logs etc...
- 'no-console': 2,
66
'space-before-function-paren': [2, {
67
anonymous: 'always',
68
named: 'never'
0 commit comments