mirror of
https://github.com/pinry/pinry.git
synced 2026-01-14 19:22:05 +01:00
Feature: Allow a little console.log for production
This commit is contained in:
committed by
Isaac Bythewood
parent
f0a4108a32
commit
e2dbf13c8f
@@ -8,9 +8,10 @@ module.exports = {
|
||||
'@vue/airbnb',
|
||||
],
|
||||
rules: {
|
||||
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
||||
// 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
||||
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
||||
'max-len': 'off',
|
||||
"no-console": "off",
|
||||
},
|
||||
parserOptions: {
|
||||
parser: 'babel-eslint',
|
||||
|
||||
Reference in New Issue
Block a user