diff --git a/.eslintrc b/.eslintrc index 9703fa9..cbac6a9 100644 --- a/.eslintrc +++ b/.eslintrc @@ -21,6 +21,7 @@ "eqeqeq": [2, "smart"], "guard-for-in": 2, "key-spacing": [2, {"beforeColon": false, "afterColon": true}], + "no-implied-eval": 2, "no-mixed-spaces-and-tabs": 2, "no-nested-ternary": 2, "no-reserved-keys": 2, @@ -30,6 +31,9 @@ "no-unused-vars": [2, {"vars": "local", "args": "none"}], "semi": [2, "always"], "space-after-keywords": [2, "always", {"checkFunctionKeyword": true}], + "space-before-blocks": [2, "always"], + "space-in-brackets": [2, "never"], + "space-in-parens": [2, "never"], "spaced-line-comment": [2, "always"], "strict": 2, // Warnings.