Sha256: 9a864f3713d5033b4aac93026ca26b2141b9f8b49cda7d0a58e40be7a3fb9dad
Contents?: true
Size: 963 Bytes
Versions: 3
Compression:
Stored size: 963 Bytes
Contents
require: - rubocop-rspec - rubocop-performance AllCops: TargetRubyVersion: 2.6 Exclude: - 'bin/*' - 'vendor/**/*' Style/ClassAndModuleChildren: Enabled: false Style/Documentation: Enabled: false Metrics/AbcSize: Max: 20 Metrics/LineLength: # Commonly used screens these days easily fit more than 80 characters. Max: 120 Exclude: - 'spec/**/*' Metrics/MethodLength: # Too short methods lead to extraction of single-use methods, which can make # the code easier to read (by naming things), but can also clutter the class Max: 20 Metrics/BlockLength: Exclude: - 'spec/**/*' Metrics/CyclomaticComplexity: Max: 8 Layout/SpaceAroundEqualsInParameterDefault: # No space makes the method definition shorter and differentiates # from a regular assignment. EnforcedStyle: no_space Style/SymbolArray: # We do not need to support Ruby 1.9, so this is good to use. Enabled: true RSpec/NestedGroups: Max: 5
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
firebug-1.4.2 | .rubocop.yml |
firebug-1.4.1 | .rubocop.yml |
firebug-1.4.0 | .rubocop.yml |