There are some common exceptions for people who otherwise really want spaces before their keywords.
if (typeof x === 'foo') {
}
Currently, that code fails when using requireSpaceBeforeKeywords : true. At the moment, the only alternative is to specify every other keyword as an array. Maybe the allExcept pattern is appropriate here?
There are some common exceptions for people who otherwise really want spaces before their keywords.
Currently, that code fails when using
requireSpaceBeforeKeywords : true
. At the moment, the only alternative is to specify every other keyword as an array. Maybe theallExcept
pattern is appropriate here?