Sha256: 87cd91308c7f5c21aa00073f3bd80750706001ce4cab53c19f416aaaa5b696c1

Contents?: true

Size: 1.28 KB

Versions: 13

Compression:

Stored size: 1.28 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:
  AllowedPatterns:
    - 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/StringLiterals:
  Enabled: true
  EnforcedStyle: double_quotes

Style/StringLiteralsInInterpolation:
  Enabled: true
  EnforcedStyle: double_quotes

Style/Documentation:
  Enabled: false

Style/MultilineBlockChain:
  Enabled: false

Style/SymbolArray:
  EnforcedStyle: brackets

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

Style/ClassAndModuleChildren:
  EnforcedStyle: compact

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
grumlin-1.0.4 .rubocop.yml
grumlin-1.0.3 .rubocop.yml
grumlin-1.0.3.beta1 .rubocop.yml
grumlin-1.0.2 .rubocop.yml
grumlin-1.0.1 .rubocop.yml
grumlin-1.0.0 .rubocop.yml
grumlin-1.0.0.rc7 .rubocop.yml
grumlin-1.0.0.rc6 .rubocop.yml
grumlin-1.0.0.rc5 .rubocop.yml
grumlin-1.0.0.rc4 .rubocop.yml
grumlin-1.0.0.rc3 .rubocop.yml
grumlin-1.0.0.rc2 .rubocop.yml
grumlin-1.0.0.rc1 .rubocop.yml