Sha256: 10249a4c8b03db109f40824d0f350a2591b46a2dc8f64a038dfc3ed87d22e6a8

Contents?: true

Size: 1.09 KB

Versions: 11

Compression:

Stored size: 1.09 KB

Contents

AllCops:
  TargetRubyVersion: 2.7
  NewCops: enable
  SuggestExtensions: false

require:
  - rubocop-performance
  - rubocop-rspec

Layout/LineLength:
  Max: 120
  Exclude:
    - spec/**/*_spec.rb

Metrics/BlockLength:
  Exclude:
    - spec/**/*_spec.rb

Metrics/MethodLength:
  Max: 20

Metrics/ParameterLists:
  Max: 6

Naming/MethodName:
  IgnoredPatterns:
    - toList
    - inVLabel
    - outVLabel
    - inV
    - outV

Naming/VariableName:
  AllowedIdentifiers:
    - inV
    - outV
    - inVLabel
    - outVLabel

Naming/MethodParameterName:
  AllowedNames:
    - id
    - inV
    - outV
    - inVLabel
    - outVLabel

RSpec/NamedSubject:
  Enabled: false

RSpec/NestedGroups:
  Enabled: false

RSpec/ExampleLength:
  Enabled: false

RSpec/MultipleExpectations:
  Enabled: false

RSpec/DescribeClass:
  Enabled: false

Style/WordArray:
  Exclude:
    - spec/**/*_spec.rb

Style/StringLiterals:
  Enabled: true
  EnforcedStyle: double_quotes

Style/StringLiteralsInInterpolation:
  Enabled: true
  EnforcedStyle: double_quotes

Style/Documentation:
  Enabled: false

Style/MultilineBlockChain:
  Enabled: false

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
grumlin-0.15.4 .rubocop.yml
grumlin-0.15.3 .rubocop.yml
grumlin-0.15.2 .rubocop.yml
grumlin-0.15.1 .rubocop.yml
grumlin-0.15.0 .rubocop.yml
grumlin-0.14.5 .rubocop.yml
grumlin-0.14.4 .rubocop.yml
grumlin-0.14.3 .rubocop.yml
grumlin-0.14.2 .rubocop.yml
grumlin-0.14.1 .rubocop.yml
grumlin-0.14.0 .rubocop.yml