diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-17 15:28:10 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-22 14:53:02 -0500 |
commit | f1ccd5280635f9528b2cfe4629222c627065781c (patch) | |
tree | 0e3c9130ba884f5b2df884d097e6a6c707a0f3e4 | |
parent | c0d91bffc461c61af9d35aecb7c92e15648382b2 (diff) |
Explicitly indicate that "no-param-reassign" is allowed
-rw-r--r-- | .eslintrc.json | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index cfee7be8..2dc63e80 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -26,6 +26,7 @@ "no-const-assign": "error", "no-constant-condition": "off", "no-global-assign": "error", + "no-param-reassign": "off", "no-shadow": ["error", {"builtinGlobals": false}], "no-undef": "error", "no-unneeded-ternary": "error", |