Pattern: Missing field description
Issue: -
Checks if each field has a description.
# good
class UserType < BaseType
field :name, String, "Name of the user", null: true
end
# bad
class UserType < BaseType
field :name, String, null: true
end
Pattern: Missing field description
Issue: -
Checks if each field has a description.
# good
class UserType < BaseType
field :name, String, "Name of the user", null: true
end
# bad
class UserType < BaseType
field :name, String, null: true
end