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:
@@ -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
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user