cateditor eslint: don't warn on console writing in production

This commit is contained in:
2020-03-13 09:17:39 -07:00
parent 5c81427751
commit 27fafc405a

View File

@ -11,7 +11,8 @@ module.exports = {
'vuetify'
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
//'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-console': 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'indent': ['warn', 2, { CallExpression: { arguments: 'first' },
ObjectExpression: 'first',