struct Ameba::Rule::Performance::AnyAfterFilter

Overview

This rule is used to identify usage of any? calls that follow filters.

For example, this is considered invalid:

[1, 2, 3].select { |e| e > 2 }.any?
[1, 2, 3].reject { |e| e >= 2 }.any?

And it should be written as this:

[1, 2, 3].any? { |e| e > 2 }
[1, 2, 3].any? { |e| e < 2 }

YAML configuration example:

Performance/AnyAfterFilter:
  Enabled: true
  FilterNames:
    - select
    - reject

Included Modules

Defined in:

ameba/rule/performance/any_after_filter.cr

Constant Summary

ANY_NAME = "any?"
MSG = "Use `#{ANY_NAME} {...}` instead of `%s {...}.#{ANY_NAME}`"

Constructors

Instance Method Summary

Instance methods inherited from struct Ameba::Rule::Base

==(other) ==, catch(source : Source) catch, excluded?(source) excluded?, group group, hash hash, initialize initialize, name name, special? special?, test(source : Source, node : Crystal::ASTNode, *opts)
test(source : Source)
test

Constructor methods inherited from struct Ameba::Rule::Base

new new

Class methods inherited from struct Ameba::Rule::Base

parsed_doc parsed_doc

Macros inherited from struct Ameba::Rule::Base

issue_for(*args) issue_for

Macros inherited from module Ameba::Config::RuleConfig

properties(&block) properties

Constructor Detail

def self.new(ctx : YAML::ParseContext, node : YAML::Nodes::Node) #

def self.new(config = nil) #

This rule is used to identify usage of any? calls that follow filters.

For example, this is considered invalid:

[1, 2, 3].select { |e| e > 2 }.any?
[1, 2, 3].reject { |e| e >= 2 }.any?

And it should be written as this:

[1, 2, 3].any? { |e| e > 2 }
[1, 2, 3].any? { |e| e < 2 }

YAML configuration example:

Performance/AnyAfterFilter:
  Enabled: true
  FilterNames:
    - select
    - reject

[View source]
def self.new(*, __context_for_yaml_serializable ctx : YAML::ParseContext, __node_for_yaml_serializable node : YAML::Nodes::Node) #

Instance Method Detail

def description : String #

def description=(description : String) #

def enabled : Bool #

def enabled=(enabled : Bool) #

def excluded : Array(String) | Nil #

def excluded=(excluded : Array(String) | Nil) #

def filter_names : Array(String) #

def filter_names=(filter_names : Array(String)) #

def severity : Ameba::Severity #

def severity=(severity : Ameba::Severity) #

def test(source, node : Crystal::Call) #

[View source]