Sha256: 88bbd60575b5a81042325b1809da00cf73baf842f914003151537f1445be0233

Contents?: true

Size: 783 Bytes

Versions: 1

Compression:

Stored size: 783 Bytes

Contents

inherit_from: rubocop-suse.yml

AllCops:
  TargetRubyVersion: 2.1
  Exclude:
    - 'vendor/**/*'
    - '.git/**/*'
    - lib/lignite/ev3_ops.rb

Naming/FileName:
  Exclude:
    - spec/data/*.rb

Layout/IndentHeredoc:
  Enabled: false

Performance/RedundantBlockCall:
  Enabled: false

Style/SymbolArray:
  Enabled: false

# self.sleep is Ev3Ops#sleep, sleep is Kernel#sleep
Style/RedundantSelf:
  Exclude:
    - spec/data/*.rb

Metrics/BlockLength:
  Exclude:
    - lignite.gemspec
    - lib/lignite/ev3_tool.rb
    - spec/**/*.rb

Metrics/ClassLength:
  Max: 120
  Exclude:
    - lib/lignite/ev3_tool.rb
    - lib/lignite/motors.rb

Metrics/CyclomaticComplexity:
  Max: 8

Metrics/MethodLength:
  Max: 25

Metrics/ModuleLength:
  Exclude:
    # generated
    - lib/lignite/enums.rb

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
lignite-0.6.0 .rubocop.yml