array-bracket-spacing fix
diff --git a/.eslintrc.json b/.eslintrc.json
index 7a0ba1c..d181afe 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -70,7 +70,6 @@
         "no-useless-return": "off",
         "operator-assignment": "off",
         "no-lonely-if": "off",
-        "array-bracket-spacing": "off",
         "newline-per-chained-call": "off",
         "no-useless-concat": "off",
         "no-eval": "off",
diff --git a/player/js/utils/common.js b/player/js/utils/common.js
index d2ac886..7f47953 100644
--- a/player/js/utils/common.js
+++ b/player/js/utils/common.js
@@ -131,9 +131,9 @@
     case 4: r = t; g = p; b = v; break;
     case 5: r = v; g = p; b = q; break;
   }
-  return [ r,
+  return [r,
     g,
-    b ];
+    b];
 }
 
 function RGBtoHSV(r, g, b) {