class Ameba::Rule::Style::RedundantParentheses
- Ameba::Rule::Style::RedundantParentheses
- Ameba::Rule::Base
- Reference
- Object
Overview
A rule that disallows redundant parentheses around control expressions.
For example, this is considered invalid:
if (foo == 42)
do_something
end
And should be replaced by the following:
if foo == 42
do_something
end
YAML configuration example:
Style/RedundantParentheses:
Enabled: true
ExcludeTernary: false
ExcludeAssignments: false
Included Modules
- YAML::Serializable
- YAML::Serializable::Strict
Defined in:
ameba/rule/style/redundant_parentheses.crConstant Summary
-
MSG =
"Redundant parentheses"
Constructors
- .new(ctx : YAML::ParseContext, node : YAML::Nodes::Node)
-
.new(config = nil)
A rule that disallows redundant parentheses around control expressions.
Class Method Summary
-
.parsed_doc : String?
Returns documentation for this rule, if there is any.
Instance Method Summary
- #description : String
- #description=(description : String)
- #enabled : Bool
- #enabled=(enabled : Bool)
- #exclude_assignments : Bool
- #exclude_assignments=(exclude_assignments : Bool)
- #exclude_ternary : Bool
- #exclude_ternary=(exclude_ternary : Bool)
- #excluded : Array(String)?
- #excluded=(excluded : Array(String)?)
- #severity : Ameba::Severity
- #severity=(severity : Ameba::Severity)
- #test(source, node : Crystal::If | Crystal::Unless | Crystal::Case | Crystal::While | Crystal::Until)
Instance methods inherited from class Ameba::Rule::Base
==(other)
==,
catch(source : Source)
catch,
excluded?(source)
excluded?,
group
group,
hash
hash,
name
name,
special?
special?,
test(source : Source, node : Crystal::ASTNode, *opts)test(source : Source) test
Constructor Detail
def self.new(config = nil)
#
A rule that disallows redundant parentheses around control expressions.
For example, this is considered invalid:
if (foo == 42)
do_something
end
And should be replaced by the following:
if foo == 42
do_something
end
YAML configuration example:
Style/RedundantParentheses:
Enabled: true
ExcludeTernary: false
ExcludeAssignments: false
Class Method Detail
def self.parsed_doc : String?
#
Returns documentation for this rule, if there is any.
module Ameba
# This is a test rule.
# Does nothing.
class MyRule < Ameba::Rule::Base
def test(source)
end
end
end
MyRule.parsed_doc # => "This is a test rule.\nDoes nothing."
Instance Method Detail
def test(source, node : Crystal::If | Crystal::Unless | Crystal::Case | Crystal::While | Crystal::Until)
#