Sha256: 299ca1ef09f1bc3c1f288b475e8c3eb1c8bb2bd886eb965d973efa1692fae2c7

Contents?: true

Size: 1.26 KB

Versions: 15

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:
  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/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

15 entries across 15 versions & 1 rubygems

Version Path
grumlin-0.23.0 .rubocop.yml
grumlin-0.22.5 .rubocop.yml
grumlin-0.22.4 .rubocop.yml
grumlin-0.22.3 .rubocop.yml
grumlin-0.22.2 .rubocop.yml
grumlin-0.22.1 .rubocop.yml
grumlin-0.22.0 .rubocop.yml
grumlin-0.21.1 .rubocop.yml
grumlin-0.21.0 .rubocop.yml
grumlin-0.20.2 .rubocop.yml
grumlin-0.20.1 .rubocop.yml
grumlin-0.20.0 .rubocop.yml
grumlin-0.19.7 .rubocop.yml
grumlin-0.19.6 .rubocop.yml
grumlin-0.19.5 .rubocop.yml