shard-ameba/src/ameba/rule/method_names.cr

58 lines
1009 B
Crystal
Raw Normal View History

2017-11-07 21:50:25 +00:00
module Ameba::Rule
2017-11-04 20:54:27 +00:00
# A rule that enforces method names to be in underscored case.
#
# For example, these are considered valid:
#
# ```
# class Person
# def first_name
# end
#
# def date_of_birth
# end
#
# def homepage_url
# end
# end
# ```
#
# And these are invalid method names:
#
# ```
# class Person
# def firstName
# end
#
# def date_of_Birth
# end
#
# def homepageURL
# end
# end
# ```
#
# YAML configuration example:
#
# ```
# MethodNames:
# Enabled: true
# ```
#
2017-11-07 21:50:25 +00:00
struct MethodNames < Base
2017-11-22 06:44:29 +00:00
properties do
description = "Enforces method names to be in underscored case"
end
2017-11-04 20:54:27 +00:00
def test(source)
AST::Visitor.new self, source
2017-11-04 20:54:27 +00:00
end
def test(source, node : Crystal::Def)
return if (expected = node.name.underscore) == node.name
source.error self, node.location,
2017-11-04 20:54:27 +00:00
"Method name should be underscore-cased: #{expected}, not #{node.name}"
end
end
end