disallowSpaceAfterComma all except sparse arrays does not work as advertised
bcowgill opened this issue · 1 comments
bcowgill commented
"disallowSpaceAfterComma" {"allExcept": ["sparseArrays"]},
// Valid for mode {"allExcept": ["sparseArrays"]}
[const1,const2, , ,const3];
// Invalid for mode {"allExcept": ["sparseArrays"]}
[const1, const2, , , const3];
Both examples from the documentation appear to be valid
markelog commented
Can't repro [const1, const2, , , const3];
shows errors as expected, we also have tests which proves it -