Merge pull request #6945 from svbergerem/change-eslint-indentation-rule

Change eslint indentation rule for var, let and const
This commit is contained in:
Jonne Haß 2016-08-08 01:43:00 +02:00 committed by GitHub
commit 2f80ab8f3d

View file

@ -69,7 +69,7 @@
"id-blacklist": 0,
"id-length": 0,
"id-match": 0,
"indent": [2, 2, {"SwitchCase": 1}],
"indent": [2, 2, {"SwitchCase": 1, "VariableDeclarator": {"var": 2, "let": 2, "const": 3}}],
"init-declarations": 0,
"jsx-quotes": 0,
"key-spacing": [2, {"beforeColon": false, "afterColon": true}],