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 <mjtrangoni@gmail.com>
This commit is contained in:
Mario Trangoni
2019-04-10 20:00:17 +02:00
parent a114b3f3bc
commit 0e81752ab8

View File

@@ -155,7 +155,7 @@ describe('Utils', () => {
depth: 2 depth: 2
}, },
{ {
array: [ [[1, 2], [3, 4]], [[1, 2], [3, 4]] ], array: [[[1, 2], [3, 4]], [[1, 2], [3, 4]]],
depth: 3 depth: 3
}, },
]; ];