eslintrc: update indent warnings
This commit is contained in:
@ -11,7 +11,9 @@ module.exports = {
|
||||
rules: {
|
||||
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
||||
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
||||
"indent": ["warn", 2]
|
||||
"indent": ["warn", 2, { CallExpression: { arguments: "first" },
|
||||
ObjectExpression: "first",
|
||||
ArrayExpression: "first" }]
|
||||
},
|
||||
parserOptions: {
|
||||
parser: 'babel-eslint'
|
||||
|
||||
Reference in New Issue
Block a user