RuboCop configuration

RuboCop is a very popular tool for analyzing Ruby projects. It requires configuration via a .rubocop.yml configuration file as detailed in Ruby's coding style guide.

If you don't specify your custom configuration file we use our default below. We suggest to add your own configuration file into your repository root directory to be able to specify your coding and quality standards.

.rubocop.yml

---

AllCops:
  Exclude:
    - 'bin/**/*'

If you are dealing with any special type of project structure, please, let us know. We are happy to help you.