brandonbaker40/turbo_invoice_backend

View on GitHub
.rubocop.yml

Summary

Maintainability
Test Coverage
AllCops:
  Exclude:
    - 'db/**/*'
    - 'config/**/*'
    - 'test/**/*'
    - 'test/*'
    - 'spec/*'

Metrics/BlockLength:
  Exclude:
    - 'spec/**/*'
    - '**/*.rake'
    - 'config/**/*.rb'

Metrics/LineLength:
  Exclude:
    - 'spec/**/*'
    - 'bin/setup'
    - 'bin/update'

Lint/UselessAssignment:
  Exclude:
    - 'spec/**/*'

Style/NumericLiterals:
  Exclude:
    - 'spec/factories/*'