diff --git a/.eslintrc b/.eslintrc index 5bb665c..969711b 100644 --- a/.eslintrc +++ b/.eslintrc @@ -12,7 +12,7 @@ "arrow-body-style": 2, "arrow-spacing": [1, { "before": true, "after": true }], "brace-style": 2, - "camelcase": [1, {"properties": "never"}], + "camelcase": [2, {"properties": "never"}], "eol-last": 1, "eqeqeq": 2, "global-require": 2, @@ -31,17 +31,17 @@ "no-func-assign": 2, "no-irregular-whitespace": 2, "no-magic-numbers": [1, { "ignore": [-1, 0, 1] }], - "no-multi-spaces": 2, + "no-multi-spaces": 1, "no-multi-str": 1, "no-unexpected-multiline": 2, "no-unreachable": 2, "no-self-assign": 2, "no-trailing-spaces": 1, "no-undef": 2, - "no-unused-vars": 1, + "no-unused-vars": 2, "no-var": 2, "prefer-arrow-callback": 1, - "prefer-const": 1, + "prefer-const": 2, "quotes": [1, "single"], "semi": [1, "never"], "space-before-function-paren": [2, "never"],