summaryrefslogtreecommitdiff
path: root/.eslintrc.json
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-02-17 15:28:10 -0500
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-02-22 14:53:02 -0500
commitf1ccd5280635f9528b2cfe4629222c627065781c (patch)
tree0e3c9130ba884f5b2df884d097e6a6c707a0f3e4 /.eslintrc.json
parentc0d91bffc461c61af9d35aecb7c92e15648382b2 (diff)
Explicitly indicate that "no-param-reassign" is allowed
Diffstat (limited to '.eslintrc.json')
-rw-r--r--.eslintrc.json1
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",