Sha256: f12b0f01b5e3b7dc083cb52125907a5ff612a6de17fc2576fe5faecc6093dcc8

Contents?: true

Size: 816 Bytes

Versions: 2

Compression:

Stored size: 816 Bytes

Contents

inherit_from: .rubocop_todo.yml

AllCops:
  Include:
    - config.ru
    - Rakefile
  Exclude:
    - .*/**/*

# Limit lines to 80 characters.
LineLength:
  Max: 80

ClassLength:
  Max: 150

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

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

# Wants you to use the same argument names for every reduce. This seems kinda
# naff compared to naming them semantically
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

Style/DotPosition:
  EnforcedStyle: 'trailing'

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ibandit-0.1.1 .rubocop.yml
ibandit-0.1.0 .rubocop.yml