Sha256: a1379f2bc3dc89c2e56c6298497e1767a741b26d1cc0af7dab5ca66182150826

Contents?: true

Size: 1.05 KB

Versions: 6

Compression:

Stored size: 1.05 KB

Contents

inherit_from: .rubocop_todo.yml
inherit_gem:
  gc_ruboconfig: rubocop.yml

AllCops:
  TargetRubyVersion: 2.5

# Limit lines to 90 characters.
Layout/LineLength:
  Max: 90

Metrics/ClassLength:
  Max: 400

# Avoid single-line methods.
Style/SingleLineMethods:
  AllowIfMethodIsEmpty: true

# Wants underscores in all large numbers. Pain in the ass for things like
# unix timestamps.
Style/NumericLiterals:
  Enabled: false

# Wants you to use the same argument names for every reduce. This seems kinda
# naff compared to naming them semantically
Style/SingleLineBlockParams:
  Enabled: false

Style/SignalException:
  EnforcedStyle: 'only_raise'

# Wants to exclude accents from comments
Style/AsciiComments:
  Enabled: false

# Configuration parameters: CountComments.
Metrics/MethodLength:
  Max: 25

# Configuration parameters: CountComments.
Metrics/ModuleLength:
  Max: 400

Layout/DotPosition:
  EnforcedStyle: 'trailing'

# Wants to to lock to Ruby 2.4 as specified here but as this is a public gem
# this is quite aggressive.
Gemspec/RequiredRubyVersion:
  Enabled: false

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ibandit-1.8.1 .rubocop.yml
ibandit-1.8.0 .rubocop.yml
ibandit-1.7.1 .rubocop.yml
ibandit-1.7.0 .rubocop.yml
ibandit-1.6.1 .rubocop.yml
ibandit-1.6.0 .rubocop.yml