helpyio/helpy

View on GitHub
.rubocop.yml

Summary

Maintainability
Test Coverage
AllCops:

  Exclude:
    - db/**/*
    - lib/**/*
    - tmp/**/*
    - vendor/**/*

  TargetRubyVersion: 2.3
  DisabledByDefault: true

# Rails:
#   Enabled: true

# TODO: Resolve the following RuboCop violations

# Offense count: 1
# Configuration parameters: Include.
# Include: app/models/**/*.rb
# Rails/HasAndBelongsToMany:
#   Exclude:
#     - 'app/models/user.rb'

# Offense count: 2
# Configuration parameters: Include.
# Include: app/**/*.rb, config/**/*.rb, db/**/*.rb, lib/**/*.rb
# Rails/Output:
#   Exclude:
#     - 'config/unicorn.rb'

# Offense count: 1
# Configuration parameters: AllowSafeAssignment.
Lint/AssignmentInCondition:
  Exclude:
    - 'bin/spring'

# Offense count: 2
Lint/SuppressedException:
  Exclude:
    - 'bin/rails'
    - 'bin/rake'

Style/AndOr:
  Enabled: true