From 01a71b284078a2856d81843bcb7afb4d2992ddae Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Wed, 6 Nov 2019 00:41:26 +0200 Subject: [PATCH] eslint: add array bracket parsing. --- .eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.js b/.eslintrc.js index a3352fb..5609d7d 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -94,5 +94,6 @@ module.exports = { "consistent-return": "error", "brace-style": ["error", "1tbs", { "allowSingleLine": true }], "jsx-quotes": ["error"], + "array-bracket-spacing": "error", } };