Sha256: c2933178885c2feaba72c3f0301367125cf676975e2ec5ad6c4393bf54dec9d2

Contents?: true

Size: 1.26 KB

Versions: 8

Compression:

Stored size: 1.26 KB

Contents

inherit_from:
 - .rubocop_todo.yml

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

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

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

# 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

8 entries across 8 versions & 1 rubygems

Version Path
jazzy-0.0.13 .rubocop.yml
jazzy-0.0.12 .rubocop.yml
jazzy-0.0.11 .rubocop.yml
jazzy-0.0.10 .rubocop.yml
jazzy-0.0.9 .rubocop.yml
jazzy-0.0.8 .rubocop.yml
jazzy-0.0.7 .rubocop.yml
jazzy-0.0.6 .rubocop.yml