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
Source

Summary

test(script, list2 \\ [])

Callback implementation for Dogma.Rule.test/2

Functions

test(script, list2 \\ [])

Callback implementation for Dogma.Rule.test/2.

Source