Sha256: e53d4219c37aca5d8377d6c5ce212ffd9267772094ddfc233cc229ad51f61d96

Contents?: true

Size: 1.2 KB

Versions: 1

Compression:

Stored size: 1.2 KB

Contents

# The behavior of RuboCop can be controlled via the .rubocop.yml
# configuration file. It makes it possible to enable/disable
# certain cops (checks) and to alter their behavior if they accept
# any parameters. The file can be placed either in your home
# directory or in some project directory.
#
# RuboCop will start looking for the configuration file in the directory
# where the inspected file is and continue its way up to the root directory.
#
# See https://docs.rubocop.org/rubocop/configuration
---
inherit_from: .rubocop_todo.yml

require:
- rubocop-performance
- rubocop-rake
- rubocop-rspec

AllCops:
  NewCops: enable
  DisplayCopNames: true
  ExtraDetails: true
  DisplayStyleGuide: true
  TargetRubyVersion: '2.4'
  Exclude:
  - vendor/**/*

Metrics:
  Description: Metrics cops are rarely useful
  Enabled: false

Style/HashSyntax:
  Description: Disable temporarily (FIXME)
  EnforcedStyle: ruby19
  Enabled: false

Naming/FileName:
  Description: Some files violates the snake_case convention
  Exclude:
    - 'lib/beaker-docker.rb'

# Style enforcements
Style/TrailingCommaInArrayLiteral:
  EnforcedStyleForMultiline: consistent_comma
Style/IfUnlessModifier:
  Enabled: false
Style/StringLiterals:
  Enabled: false

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
beaker-docker-1.5.0 .rubocop.yml