Pattern: Missing type description
Issue: -
Checks if a type (object, input, interface, scalar, union, mutation, subscription, and resolver) has a description.
# good
class Types::UserType < Types::BaseObject
description "Represents application user"
# ...
end
# bad
class Types::UserType < Types::BaseObject
# ...
end