关闭 no-console、no-debugger

This commit is contained in:
2021-06-05 11:04:03 +08:00
parent 79edb9c0f2
commit 8046a66540

View File

@@ -11,8 +11,8 @@ module.exports = {
parser: 'babel-eslint'
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-console': 'off',
'no-debugger': 'off',
'vue/html-closing-bracket-newline': 'off',
'vue/html-indent': 'off',
'vue/html-self-closing': 'off',