docwhat/chicagoiands

View on GitHub
.rubocop.yml

Summary

Maintainability
Test Coverage
AllCops:
  Include:
    - '**/Gemfile'
    - '**/Rakefile'
    - '**/Guardfile'
  Exclude:
    - 'bin/**'
    - 'script/**'
    - 'db/migrate/*.rb'
    - 'db/schema.rb'
    - 'vendor/**'

# Remove when upgrading to Rails 4.x
Rails/ActionFilter:
  Enabled: false

LineLength:
  Max: 120

Documentation:
  Enabled: false

FileName:
  Exclude:
    - 'Guardfile'
    - 'Gemfile'
    - 'Gemfile.lock'

inherit_from: '.rubocop_todo.yml'