Newer
Older
docker-doom / builder / .rubocop.yml
@Matt McCarragher Matt McCarragher on 29 Oct 2018 524 bytes started config work
AllCops:
  Include:
    - views/**
    - ./
  Exclude:
    - bin/**
Documentation:
  Enabled: false
# Selenium page objects have late bindings that get erroneously detected.
Lint/UselessAssignment:
  Enabled: false
# Drivers don't behave if 'self' isn't explicitly specified.
Style/RedundantSelf:
  Enabled: false
# This isn't 1988. Nobody has 80 column displays anymore.
Metrics/LineLength:
  Enabled: false
Metrics/ModuleLength:
  Enabled: false
Metrics/MethodLength:
  Enabled: false
Metrics/ClassLength:
  Enabled: false