Sha256: 24e75bd7d7896a6dbd81a2961e164da82fd1b92400187df8a226bf4d45155a8b

Contents?: true

Size: 1.02 KB

Versions: 9

Compression:

Stored size: 1.02 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
#
require: rubocop-rspec

AllCops:
  TargetRubyVersion: 2.6.5
  NewCops: enable

RSpec/FilePath:
  Enabled: false

Metrics/BlockLength:
  Max: 15
  Exclude:
    - "spec/**/*.rb"
    - "barkibu-kb.gemspec"
    - "barkibu-kb-*.gemspec"

Naming/FileName:
  Exclude:
    - "lib/barkibu-kb*.rb"

Style/FrozenStringLiteralComment:
  Enabled: false

Style/Documentation:
  Enabled: false

RSpec/NestedGroups:
  Max: 4

Metrics/MethodLength:
  Max: 15

Metrics/ModuleLength:
  Max: 110

RSpec/ExampleLength:
  CountAsOne: ["array", "heredoc", "hash"]

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
barkibu-kb-0.24.1 .rubocop.yml
barkibu-kb-0.24.0 .rubocop.yml
barkibu-kb-0.23.0 .rubocop.yml
barkibu-kb-0.22.0 .rubocop.yml
barkibu-kb-0.21.0 .rubocop.yml
barkibu-kb-0.20.0 .rubocop.yml
barkibu-kb-0.19.0 .rubocop.yml
barkibu-kb-0.18.0 .rubocop.yml
barkibu-kb-0.17.0 .rubocop.yml