From 0e81752ab82feb1eacc3b4dff8c2b5f2e2b89188 Mon Sep 17 00:00:00 2001 From: Mario Trangoni Date: Wed, 10 Apr 2019 20:00:17 +0200 Subject: [PATCH] lint: Fix disallowSpacesInsideArrayBrackets issues See, disallowSpacesInsideArrayBrackets: Illegal space after opening bracket at src/datasource-zabbix/specs/utils.spec.js : 156 | }, 157 | { 158 | array: [ [[1, 2], [3, 4]], [[1, 2], [3, 4]] ], --------------------------^ 159 | depth: 3 160 | }, disallowSpacesInsideArrayBrackets: Illegal space before closing bracket at src/datasource-zabbix/specs/utils.spec.js : 156 | }, 157 | { 158 | array: [ [[1, 2], [3, 4]], [[1, 2], [3, 4]] ], -------------------------------------------------------------^ 159 | depth: 3 160 | }, Signed-off-by: Mario Trangoni --- src/datasource-zabbix/specs/utils.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/datasource-zabbix/specs/utils.spec.js b/src/datasource-zabbix/specs/utils.spec.js index 3367f1f..01cc76f 100644 --- a/src/datasource-zabbix/specs/utils.spec.js +++ b/src/datasource-zabbix/specs/utils.spec.js @@ -155,7 +155,7 @@ describe('Utils', () => { depth: 2 }, { - array: [ [[1, 2], [3, 4]], [[1, 2], [3, 4]] ], + array: [[[1, 2], [3, 4]], [[1, 2], [3, 4]]], depth: 3 }, ];