From 71c051178d3a311de7a0d9c5821a464bcb271dd7 Mon Sep 17 00:00:00 2001 From: Andrew Dodson Date: Wed, 4 Mar 2020 21:38:31 +0000 Subject: [PATCH] feat(rules): no-useless-rename no-param-reassign, BREAKING CHANGE --- eslintrc.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eslintrc.json b/eslintrc.json index 4c587ed..3b7dba2 100644 --- a/eslintrc.json +++ b/eslintrc.json @@ -62,6 +62,7 @@ "no-new-wrappers": 2, "no-octal": 2, "no-octal-escape": 2, + "no-param-reassign": 2, "no-path-concat": 2, "no-proto": 2, "no-redeclare": 2, @@ -75,6 +76,7 @@ "no-trailing-spaces": 2, "no-use-before-define": [2, {"functions": false}], "no-useless-call": 2, + "no-useless-rename": 2, "no-useless-return": 2, "no-undef": 2, "no-unexpected-multiline": 2,