Sha256: 0343c1a05049d4e46c488efbb9873a62b42ed5ff3dc6b32058280289c0dd2409

Contents?: true

Size: 1.08 KB

Versions: 1

Compression:

Stored size: 1.08 KB

Contents

AllCops:
  Exclude:
    - 'vendor/**/*'
    - 'tmp/**/*'
  TargetRubyVersion: 2.3

Layout/EndOfLine:
  EnforcedStyle: lf

Layout/ClassStructure:
  Enabled: true
  Categories:
    module_inclusion:
      - include
      - prepend
      - extend
  ExpectedOrder:
      - module_inclusion
      - constants
      - public_class_methods
      - initializer
      - instance_methods
      - protected_methods
      - private_methods

Layout/IndentHeredoc:
  EnforcedStyle: squiggly

Lint/AmbiguousBlockAssociation:
  Exclude:
    - 'test/**/*.rb'

Lint/InterpolationCheck:
  Exclude:
    - 'test/**/*.rb'

Metrics/BlockLength:
  Exclude:
    - 'Rakefile'
    - '**/*.rake'
    - 'test/**/*.rb'

Metrics/ModuleLength:
  Exclude:
    - 'test/**/*.rb'
  Max: 120

Metrics/ParameterLists:
  CountKeywordArgs: false

Naming/UncommunicativeMethodParamName:
  AllowedNames:
    - "_"
    - x
    - y
    - i
    - p
    - n
    - t
    - r
    - g
    - b
    - to
    
Style/FrozenStringLiteralComment:
  EnforcedStyle: always
    
Style/FormatStringToken:
  Enabled: false
  
Style/MultipleComparison:
  Enabled: false

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
linked-0.5.2 .rubocop.yml