codeclimate/codeclimate-rubocop

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

Summary

Maintainability
Test Coverage
Checks the spacing inside and after block parameters pipes.

### Example:

    # bad
    {}.each { | x,  y |puts x }

    # good
    {}.each { |x, y| puts x }