Sha256: 46e6198c061da5f68c005ee106e493668370a68a7520d6a2d87a6cfb353e6357

Contents?: true

Size: 1.32 KB

Versions: 22

Compression:

Stored size: 1.32 KB

Contents

AllCops:
  Include:
    - ./Rakefile
    - ./Gemfile
    - ./*.gemspec

# At the moment not ready to be used
# https://github.com/bbatsov/rubocop/issues/947
Documentation:
  Enabled: false

#- Jazzy -----------------------------------------------------------------#

# 20 lines is more reasonable than rubocop's default of 10
Metrics/MethodLength:
  Max: 20

# We adopted raise instead of fail.
SignalException:
  EnforcedStyle: only_raise

# They are idiomatic
AssignmentInCondition:
  Enabled: false

# Allow backticks
AsciiComments:
  Enabled: false

# Indentation clarifies logic branches in implementations
IfUnlessModifier:
  Enabled: false

# No enforced convention here.
SingleLineBlockParams:
  Enabled: false

# We only add the comment when needed.
Encoding:
  Enabled: false

# Having these make it easier to *not* forget to add one when adding a new
# value and you can simply copy the previous line.
TrailingComma:
  EnforcedStyleForMultiline: comma

Style/SpecialGlobalVars:
  Enabled: false

#- Jazzy specs -----------------------------------------------------------#

# Allow for `should.match /regexp/`.
AmbiguousRegexpLiteral:
  Exclude:
    - spec/**/*

# Allow `object.should == object` syntax.
Void:
  Exclude:
    - spec/**/*

ClassAndModuleChildren:
  Exclude:
    - spec/**/*

UselessComparison:
  Exclude:
    - spec/**/*

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
jazzy-0.3.2 .rubocop.yml
jazzy-0.3.1 .rubocop.yml
jazzy-0.3.0 .rubocop.yml
jazzy-0.2.4 .rubocop.yml
jazzy-0.2.3 .rubocop.yml
jazzy-0.2.2 .rubocop.yml
jazzy-0.2.1 .rubocop.yml
jazzy-0.2.0 .rubocop.yml
jazzy-0.1.6 .rubocop.yml
jazzy-0.1.5 .rubocop.yml
jazzy-0.1.4 .rubocop.yml
jazzy-0.1.3 .rubocop.yml
jazzy-0.1.2 .rubocop.yml
jazzy-0.1.1 .rubocop.yml
jazzy-0.1.0 .rubocop.yml
jazzy-0.0.20 .rubocop.yml
jazzy-0.0.19 .rubocop.yml
jazzy-0.0.18 .rubocop.yml
jazzy-0.0.17 .rubocop.yml
jazzy-0.0.16 .rubocop.yml