Dogma.Rule.PredicateName
A rule that disallows tautological predicate names, meaning those that start
with the prefix has_
or the prefix is_
.
Favour these:
def valid?(x) do
end
def picture?(x) do
end
Over these:
def is_valid?(x) do
end
def has_picture?(x) do
end
Summary
test(script, list2 \\ []) | Callback implementation for |
Functions
Callback implementation for Dogma.Rule.test/2
.