diff --git a/.eslintrc b/.eslintrc index caa7e5e..a130798 100644 --- a/.eslintrc +++ b/.eslintrc @@ -113,7 +113,7 @@ "no-unreachable": 2, "no-unsafe-finally": 2, "no-unsafe-negation": 2, - "no-unused-vars": 1, + "no-unused-vars": ["error", { "vars": "all", "args": "after-used", "ignoreRestSiblings": false }], "no-useless-call": 2, "no-useless-computed-key": 2, "no-useless-constructor": 2, @@ -123,7 +123,7 @@ "no-whitespace-before-property": 2, "no-with": 2, "object-curly-spacing": [2, "always"], - "object-curly-newline": [2, { "multiline": true }], + "object-curly-newline": "off", "object-property-newline": [2], "one-var": [2, { "initialized": "never" }], "one-var-declaration-per-line": [2, "always"],