Sha256: 18468703b90011010b03aaf044e25e9df25d41b140701576a0f35da7c8750406

Contents?: true

Size: 962 Bytes

Versions: 1

Compression:

Stored size: 962 Bytes

Contents

require: rubocop-rspec

AllCops:
  TargetRubyVersion: 3.1
  NewCops: enable
  SuggestExtensions: false

Style/StringLiterals:
  Enabled: true
  EnforcedStyle: double_quotes

Style/StringLiteralsInInterpolation:
  Enabled: true
  EnforcedStyle: double_quotes

Layout/LineLength:
  Max: 160

Style/FrozenStringLiteralComment:
  Exclude:
    - Guardfile
    - spec/**/*_spec.rb

Metrics/CyclomaticComplexity:
  Max: 15
  Exclude:
    - spec/**/*_spec.rb
    - lib/icarus/mod/cli/*.rb # Thor command files

Metrics/PerceivedComplexity:
  Max: 15
  Exclude:
    - spec/**/*_spec.rb
    - lib/icarus/mod/cli/*.rb # Thor command files

Metrics/AbcSize:
  Max: 25
  Exclude:
    - lib/icarus/mod/cli/*.rb # Thor command files

Metrics/ClassLength:
  Enabled: false

Metrics/MethodLength:
  Max: 50

RSpec/MultipleMemoizedHelpers:
  Enabled: false

Style/Documentation:
  Exclude:
    - lib/icarus/mod/cli/*.rb # Thor command files

Style/OpenStructUse:
  Enabled: false

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
Icarus-Mod-Tools-1.8.0 .rubocop.yml