codeclimate/codeclimate-rubocop

View on GitHub
config/contents/style/indentation_consistency.md

Summary

Maintainability
Test Coverage
This cops checks for inconsistent indentation.

### Example:

    class A
      def test
        puts 'hello'
         puts 'world'
      end
    end