In Ruby, lambda is a function object that is created with the -> operator. The rule states that if a lambda function does not take any parameters, parentheses should be omitted. This is due to the Ruby style guide, which promotes cleaner and more readable code.
This rule is important because consistency in coding style makes the code easier to understand and maintain. Unnecessary parentheses can add clutter to the code and may lead to confusion. By omitting parentheses in lambdas with no parameters, the code becomes more streamlined and readable.
To adhere to this rule, write your lambda without parentheses if it doesn’t require any parameters. For example, instead of writing ->() { something }, you should write -> { something }. This makes it clear that the lambda takes no arguments, and helps maintain a consistent and clean coding style.
Non-Compliant Code Examples
l=->(){something}
Compliant Code Examples
l=->{something}
Seamless integrations. Try Datadog Code Analysis
Datadog Code Analysis
Try this rule and analyze your code with Datadog Code Analysis
How to use this rule
1
2
rulesets:- ruby-best-practices # Rules to enforce Ruby best practices.
Create a static-analysis.datadog.yml with the content above at the root of your repository
Use our free IDE Plugins or add Code Analysis scans to your CI pipelines