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