Revert "Reformat codebase into 2-spaces"

This reverts commit d0d1ee303e.
This commit is contained in:
Pavel Feldman
2017-06-21 13:36:04 -07:00
parent 8e0db60c03
commit 84bc09bce1
25 changed files with 2726 additions and 3640 deletions

View File

@@ -100,11 +100,12 @@ module.exports = {
"no-trailing-spaces": 2,
"linebreak-style": [ 2, "unix" ],
"indent": [2, 2, { "SwitchCase": 1, "CallExpression": {"arguments": 2}, "MemberExpression": 2 }],
/**
* Disabled, aspirational rules
*/
"indent": [0, 4, { "SwitchCase": 1, "CallExpression": {"arguments": 2}, "MemberExpression": 2 }],
// brace-style is disabled, as eslint cannot enforce 1tbs as default, but allman for functions
"brace-style": [0, "allman", { "allowSingleLine": true }],