no-redeclare fix
diff --git a/.eslintrc.json b/.eslintrc.json
index 079ee3e..0f2f47b 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -42,7 +42,6 @@
         "no-use-before-define": "off",
         "strict": "off",
         "lines-around-directive": "off",
-        "no-redeclare": "off",
         "radix": "off",
         "camelcase": "off",
         "no-eval": "off",
diff --git a/player/js/utils/shapes/MouseModifier.js b/player/js/utils/shapes/MouseModifier.js
index 72d9fdd..bc3d9eb 100644
--- a/player/js/utils/shapes/MouseModifier.js
+++ b/player/js/utils/shapes/MouseModifier.js
@@ -51,7 +51,7 @@
 
     x = mouseCoords[0] - positions.o[i][0];
     y = mouseCoords[1] - positions.o[i][1];
-    var distance = Math.sqrt((x * x) + (y * y));
+    distance = Math.sqrt((x * x) + (y * y));
     positions.distO[i] += (distance - positions.distO[i]) * this.data.dc;
 
     positions.o[i][0] = (Math.cos(theta) * Math.max(0, this.data.maxDist - positions.distO[i])) / 2 + (path.o[i][0]);
@@ -64,7 +64,7 @@
 
     x = mouseCoords[0] - positions.i[i][0];
     y = mouseCoords[1] - positions.i[i][1];
-    var distance = Math.sqrt((x * x) + (y * y));
+    distance = Math.sqrt((x * x) + (y * y));
     positions.distI[i] += (distance - positions.distI[i]) * this.data.dc;
 
     positions.i[i][0] = (Math.cos(theta) * Math.max(0, this.data.maxDist - positions.distI[i])) / 2 + (path.i[i][0]);