Skip to content

Commit 3804364

Browse files
committed
fix continuation indent
1 parent 1d3b0b2 commit 3804364

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

es5.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ module.exports = {
101101
'indent': ['error', 2, {
102102
SwitchCase: 1,
103103
// continuation indent
104-
VariableDeclarator: 2,
105-
MemberExpression: 2,
104+
VariableDeclarator: 1, // indent is multiplier * indent = 1 * 2
105+
MemberExpression: 1, // indent is multiplier * indent = 1 * 2
106106
FunctionDeclaration: {parameters: 2},
107107
FunctionExpression: {parameters: 2},
108108
CallExpression: {arguments: 2}

0 commit comments

Comments
 (0)