Disable eslint rules that I hate

This commit is contained in:
Oliver-Akins 2020-09-27 16:14:27 -06:00
parent 3f9c07f48b
commit 2a50ed078b

View file

@ -12,6 +12,7 @@ module.exports = {
}, },
rules: { rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off', 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off' 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-extra-semi': 'off'
} }
} }