Sha256: 5880106e94af5ba7145ce453193c4c95024acb2d9038bb7dcfc3737e462169fc
Contents?: true
Size: 816 Bytes
Versions: 22
Compression:
Stored size: 816 Bytes
Contents
inherit_from: .rubocop_todo.yml AllCops: Include: - config.ru - Rakefile Exclude: - .*/**/* # Limit lines to 80 characters. LineLength: Max: 80 ClassLength: Max: 300 # 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 Style/DotPosition: EnforcedStyle: 'trailing'
Version data entries
22 entries across 22 versions & 1 rubygems