gitlab-org--gitlab-foss/spec/rubocop/cop
Sean McGivern 8dd097a915 Add RuboCop cop for custom error classes
From the Ruby style guide:

    # bad
    class FooError < StandardError
    end

    # okish
    class FooError < StandardError; end

    # good
    FooError = Class.new(StandardError)

This cop does that, but only for error classes (classes where the
superclass ends in 'Error'). We have empty controllers and models, which
are perfectly valid empty classes.
2017-03-01 10:53:10 +00:00
..
migration Enforce use of add_concurrent_foreign_key 2017-02-10 21:51:09 +01:00
custom_error_class_spec.rb Add RuboCop cop for custom error classes 2017-03-01 10:53:10 +00:00
gem_fetcher_spec.rb