Sha256: e835c3e94a7b22f6ce37543488c4147f61750ecbdd1800c9d3174e526ae01b09

Contents?: true

Size: 846 Bytes

Versions: 1

Compression:

Stored size: 846 Bytes

Contents

inherit_from: .rubocop_todo.yml

require:
  - 'rubocop-performance'

#####################
# ALL
#####################

AllCops:
  UseCache: true
  CacheRootDirectory: './tmp'
  MaxFilesInCache: 10000
  Exclude:
    - 'vendor/**/*'
    - 'spec/fixtures/**/*'
    - 'tmp/**/*'
    - 'bin/*'
  TargetRubyVersion: 2.5
  DisplayCopNames: true

#####################
# STYLE
#####################

Style/BlockDelimiters:
  Enabled: false

Style/ClassAndModuleChildren:
  Exclude:
    - 'spec/**/*_spec.rb'

Style/Documentation:
  Enabled: false

Style/LambdaCall:
  Enabled: false

Style/Lambda:
  Enabled: false

Style/SymbolArray:
  Enabled: false

#####################
# METRICS
#####################

Metrics/BlockLength:
  Exclude:
    - 'Rakefile'
    - '**/*.rake'
    - 'spec/**/*'

Metrics/ModuleLength:
  Exclude:
    - 'spec/**/*_spec.rb'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gladwords-1.0.1 .rubocop.yml