codeclimate/codeclimate-rubocop

View on GitHub
config/contents/layout/rescue_ensure_alignment.md

Summary

Maintainability
Test Coverage
This cop checks whether the rescue and ensure keywords are aligned
properly.

### Example:

    # bad
    begin
      something
      rescue
      puts 'error'
    end

    # good
    begin
      something
    rescue
      puts 'error'
    end