Sha256: 12f567e849d31a8558b1e0e0160e75ae8149b0f9efbe4220103294b917c1a6df

Contents?: true

Size: 1.02 KB

Versions: 1

Compression:

Stored size: 1.02 KB

Contents

AllCops:
  Exclude:
    - 'spec/**/*'

# Rubocop is not smart enough
Metrics/AbcSize:
  Max: 100

# CIDE::CLI is essentially a big dispatcher, no need to break it
# in smaller chunks.
Metrics/ClassLength:
  Max: 200

# Offense count: 28
Metrics/CyclomaticComplexity:
  Max: 15

# CIDE::CLI methods can be read top to bottom. No need to factor out
# functionality unless it can be shared.
Metrics/MethodLength:
  Max: 60

Metrics/PerceivedComplexity:
  Max: 20

# Don't align stuff vertically, bad for diffing
Style/AlignParameters:
  EnforcedStyle: with_fixed_indentation

# Don't obsess over missing documentation for now
Style/Documentation:
  Enabled: false

# Don't agree with rubocop here
Style/MultilineOperationIndentation:
  Enabled: false

# Prefering the short style
Style/PerlBackrefs:
  Enabled: false

# $? is not equivalent to $CHILD_STATUS
Style/SpecialGlobalVars:
  Enabled: false

# Allows for easy diffing
# Keep them sorted alphabetically unless a meaningful order exists
Style/TrailingComma:
  EnforcedStyleForMultiline: comma

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cide-0.2.0 .rubocop.yml