From fb86095da2ef98169f22c0ec0d72ec8c3e48b07d Mon Sep 17 00:00:00 2001 From: Phillip Lanclos Date: Fri, 21 Sep 2018 16:30:47 -0500 Subject: [PATCH] Add the array-bracket-spacing rule --- eslintrc.json | 1 + 1 file changed, 1 insertion(+) diff --git a/eslintrc.json b/eslintrc.json index 52d9ec66..3839c495 100644 --- a/eslintrc.json +++ b/eslintrc.json @@ -158,6 +158,7 @@ "no-whitespace-before-property": "error", "no-with": "error", "object-curly-spacing": ["error", "always"], + "array-bracket-spacing": ["error", "never"], "object-property-newline": ["error", { "allowMultiplePropertiesPerLine": true }], "one-var": ["error", { "initialized": "never" }], "operator-linebreak": ["error", "after", { "overrides": { "?": "before", ":": "before" } }],