Pattern: Inconsistent lambda call syntax
Issue: -
This rule checks for use of the lambda.(args)
syntax.
# bad
lambda.(x, y)
# good
lambda.call(x, y)
Attribute | Value |
---|---|
EnforcedStyle | call |
SupportedStyles | call, braces |
Pattern: Inconsistent lambda call syntax
Issue: -
This rule checks for use of the lambda.(args)
syntax.
# bad
lambda.(x, y)
# good
lambda.call(x, y)
Attribute | Value |
---|---|
EnforcedStyle | call |
SupportedStyles | call, braces |