Sha256: 8ff9cd03cffd09b3e0404b2ecadffa2576dbc9b3354b0320b5dc319f8a5ce95b

Contents?: true

Size: 1.24 KB

Versions: 3

Compression:

Stored size: 1.24 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

RSpec/MultipleMemoizedHelpers:
  Max: 7

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


# TODO:
# Style/SymbolArray:
#   EnforcedStyle: brackets
# Style/WordArray:
#   EnforcedStyle: brackets

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
grumlin-0.17.0 .rubocop.yml
grumlin-0.16.1 .rubocop.yml
grumlin-0.16.0 .rubocop.yml