Github Hound
When Hound comments on your pull request

Hound is a hosted service that reviews GitHub pull requests for style-guide violations.
In our GitHub repositories, Hound is based on RuboCop. You can also refer to the Rails Style Guide.
What to do
- Install RuboCop locally.
- Configure your local
.rubocop.ymlto match the HungryHub Hound configuration. Copy the.rubocop.ymlfrom the repository root to ensure your local checks use the same rules as Hound. If no.rubocop.ymlexists, Hound uses the default RuboCop rules. - Run RuboCop on the affected file:
rubocop -a file_name
- Fix the code based on the Hound and RuboCop feedback.
- If the message is unclear, search the exact error text, for example
Lint/UselessAssignment: Useless assignment to variable - today.
Do not mark the Hound conversation as resolved manually on GitHub until the code has been fixed.