Eg this: ``` throw new Error 'b' unless elm? for elm in elms ``` should get explicit parentheses to make it more obvious that it's not doing what you expected: ``` throw new Error 'b' unless (elm? for elm in elms) ``` See https://github.com/jashkenas/coffeescript/issues/5309, https://github.com/helixbass/eslint-plugin-coffee/issues/37
Eg this:
should get explicit parentheses to make it more obvious that it's not doing what you expected:
See jashkenas/coffeescript#5309, helixbass/eslint-plugin-coffee#37