If projectConfig['whitespace-after-token'] is intentionally set to false then projectConfig['whitespace-after-token'] || true will evaluate to true. Correct behavior would be to only use the default if projectConfig['whitespace-after-token'] is unset/undefined.
If
projectConfig['whitespace-after-token']
is intentionally set to false thenprojectConfig['whitespace-after-token'] || true
will evaluate to true. Correct behavior would be to only use the default ifprojectConfig['whitespace-after-token']
is unset/undefined.