ES5 array-bracket-spacing

This commit is contained in:
Amine Ben hammou
2017-09-21 09:12:37 +00:00
parent 9adca07393
commit d69d3cb421
2 changed files with 1 additions and 2 deletions

View File

@@ -30,7 +30,6 @@
"no-useless-escape": 0,
"wrap-iife": 0,
"no-plusplus": 0,
"array-bracket-spacing": 0,
"default-case": 0,
"no-lonely-if": 0,
"no-mixed-operators": 0,

View File

@@ -92,7 +92,7 @@ define(
} else if (obj[key] !== undefined) {
// val isn't an array, but since a second value has been specified,
// convert val into an array.
obj[key] = [ obj[key], val ];
obj[key] = [obj[key], val];
} else {
// val is a scalar.