BigW Consortium Gitlab

  • Sean McGivern's avatar
    Add RuboCop cop for custom error classes · 8dd097a9
    Sean McGivern authored
    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.
    8dd097a9
Name
Last commit
Last update
..
migration Loading commit data...
custom_error_class.rb Loading commit data...
gem_fetcher.rb Loading commit data...