From 0e4c854f6733fe012f626f0e489193fd6aec0813 Mon Sep 17 00:00:00 2001 From: David Neukirchen Date: Tue, 3 Apr 2018 01:48:22 +0200 Subject: [PATCH] Disable no-params-reassign for properties (#116) --- .eslintrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.eslintrc b/.eslintrc index 450aedb6f1..6c5c4d90a6 100644 --- a/.eslintrc +++ b/.eslintrc @@ -15,6 +15,8 @@ }, // Rule overrides "rules": { + // Disable no-params-reassign for properties + "no-param-reassign": ["error", { "props": false }], // Allow usage of dev-dependencies in js files in build directory "import/no-extraneous-dependencies": ["error", {"devDependencies": ["build/**/*.js"]}], // Allow strict mode (we are not dealing with modules)