Pattern: Implicit parentheses
Issue: -
This rule prohibits implicit parens on function calls.
# Some folks don't like this style of coding.
someFunction a, b, c
# And would rather it always be written like this:
someFunction(a, b, c)
Implicit parens are permitted by default, since their use is idiomatic CoffeeScript.