chore: eslint - indent 4

This commit is contained in:
jianchaoliu
2019-07-04 13:05:43 +08:00
parent 28de463e4f
commit 220083b7f2

View File

@@ -25,6 +25,7 @@ module.exports = {
'generator-star-spacing': 0,
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
'space-before-function-paren': 0
'space-before-function-paren': 0,
'indent': ['error', 4]
}
}