Sha256: 6391271b767cea37cf390643da452533e9885d2f8fd6adafbe3027626d364f6c

Contents?: true

Size: 884 Bytes

Versions: 6

Compression:

Stored size: 884 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/MethodLength:
  Max: 50

RSpec/MultipleMemoizedHelpers:
  Enabled: false

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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
Icarus-Mod-Tools-1.3.5 .rubocop.yml
Icarus-Mod-Tools-1.3.4 .rubocop.yml
Icarus-Mod-Tools-1.3.3 .rubocop.yml
Icarus-Mod-Tools-1.3.2 .rubocop.yml
Icarus-Mod-Tools-1.3.1 .rubocop.yml
Icarus-Mod-Tools-1.3.0 .rubocop.yml