struct Ameba::Rule::Style::ConstantNames
- Ameba::Rule::Style::ConstantNames
- Ameba::Rule::Base
- Struct
- Value
- Object
Overview
A rule that enforces constant names to be in screaming case.
For example, these constant names are considered valid:
LUCKY_NUMBERS = [3, 7, 11]
DOCUMENTATION_URL = "http://crystal-lang.org/docs"
And these are invalid names:
MyBadConstant = 1
Wrong_NAME = 2
YAML configuration example:
Style/ConstantNames:
Enabled: true
Defined in:
ameba/rule/style/constant_names.crConstant Summary
-
MSG =
"Constant name should be screaming-cased: %s, not %s"
Constructors
-
.new(config = nil)
A rule that enforces constant names to be in screaming case.
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
Constructor Detail
def self.new(config = nil)
#
A rule that enforces constant names to be in screaming case.
For example, these constant names are considered valid:
LUCKY_NUMBERS = [3, 7, 11]
DOCUMENTATION_URL = "http://crystal-lang.org/docs"
And these are invalid names:
MyBadConstant = 1
Wrong_NAME = 2
YAML configuration example:
Style/ConstantNames:
Enabled: true