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