Sha256: f65b1df3c6e761898529ec5298f73dc80075d0efc0bd878d6f2e7b8dba11638e
Contents?: true
Size: 893 Bytes
Versions: 20
Compression:
Stored size: 893 Bytes
Contents
inherit_from: .rubocop_todo.yml AllCops: Include: - config.ru - Rakefile Exclude: - .*/**/* # Limit lines to 80 characters. LineLength: Max: 80 ClassLength: Max: 400 # Avoid single-line methods. SingleLineMethods: AllowIfMethodIsEmpty: true # Wants underscores in all large numbers. Pain in the ass for things like # unix timestamps. NumericLiterals: Enabled: false # Wants you to use the same argument names for every reduce. This seems kinda # naff compared to naming them semantically SingleLineBlockParams: Enabled: false Style/SignalException: EnforcedStyle: 'only_raise' # Wants to exclude accents from comments Style/AsciiComments: Enabled: false # Configuration parameters: CountComments. Metrics/MethodLength: Max: 25 # Configuration parameters: CountComments. Metrics/ModuleLength: Max: 400 Style/DotPosition: EnforcedStyle: 'trailing'
Version data entries
20 entries across 20 versions & 1 rubygems