Sha256: c7ea3292ca151e7a0f112bb4e05c1be9a286d43d5842d00118b1b2207d0dc2e0

Contents?: true

Size: 1.26 KB

Versions: 5

Compression:

Stored size: 1.26 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
    - "*.gemspec"

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
    - to

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

5 entries across 5 versions & 1 rubygems

Version Path
grumlin-0.19.4 .rubocop.yml
grumlin-0.19.3 .rubocop.yml
grumlin-0.19.2 .rubocop.yml
grumlin-0.19.1 .rubocop.yml
grumlin-0.19.0 .rubocop.yml