codeclimate/codeclimate-rubocop

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

Summary

Maintainability
Test Coverage
Checks the spacing around the keywords.

### Example:

    # bad
    something 'test'do|x|
    end

    while(something)
    end

    something = 123if test

    # good
    something 'test' do |x|
    end

    while (something)
    end

    something = 123 if test