Feature: Allow a little console.log for production

This commit is contained in:
winkidney
2019-12-08 01:26:18 +08:00
committed by Isaac Bythewood
parent f0a4108a32
commit e2dbf13c8f

View File

@@ -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',