Sha256: 2aeaea50e1371a6113e07160c0557e7ceb7872ba2b42ce2fb336ce0f73edc85d

Contents?: true

Size: 1.07 KB

Versions: 12

Compression:

Stored size: 1.07 KB

Contents

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

# Rubocop is not smart enough
Metrics/AbcSize:
  Enabled: false

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

# Offense count: 28
Metrics/CyclomaticComplexity:
  Enabled: false

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

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

12 entries across 12 versions & 1 rubygems

Version Path
cide-0.9.1 .rubocop.yml
cide-0.9.0 .rubocop.yml
cide-0.8.1 .rubocop.yml
cide-0.8.0 .rubocop.yml
cide-0.7.0 .rubocop.yml
cide-0.6.3 .rubocop.yml
cide-0.6.2 .rubocop.yml
cide-0.6.1 .rubocop.yml
cide-0.6.0 .rubocop.yml
cide-0.5.0 .rubocop.yml
cide-0.4.1 .rubocop.yml
cide-0.4.0 .rubocop.yml