Sha256: df17b63ecf0105268a3367bbf1fc716f8ba925e113707f215ecfaeea1ac2d493
Contents?: true
Size: 1.34 KB
Versions: 15
Compression:
Stored size: 1.34 KB
Contents
# style cop settings # # Nein. Period. Try to keep it English, but there *will* references using # unicode characters. # Style/AsciiComments: Enabled: false # # Both styles or mixtures are reasonable # Style/ClassAndModuleChildren: EnforcedStyle: compact Enabled: false # # Maybe a bit uncommon for new devs and often results in heavily indented code # blocks. # Style/ConditionalAssignment: Enabled: false # # Would be better but unlikely... # Style/Documentation: Enabled: false # # Okay for conditions, but false positive in return statements (e.g. APIs) # Style/DoubleNegation: Enabled: false # # Our default string token has the '%{value}' format # Style/FormatStringToken: EnforcedStyle: template # # Far to often easy to read without. # Style/GuardClause: Enabled: false # # IfUnlessModifier has no own line length but we do not want it to force 120 # chars long modifiers just because we allow a few long lines. # Style/IfUnlessModifier: Enabled: false # # Well, we do this. To often to disable them. Studid. # Style/MultilineBlockChain: Enabled: false #Style/NumericPredicate: # Enabled: false Style/RaiseArgs: EnforcedStyle: compact Style/SignalException: EnforcedStyle: only_raise Style/TrailingCommaInArrayLiteral: EnforcedStyleForMultiline: comma Style/TrailingCommaInHashLiteral: EnforcedStyleForMultiline: comma
Version data entries
15 entries across 15 versions & 2 rubygems