Sha256: 7ab5b41f49abc9347f2f307953d8ce010aad10a632e923fed45cbec26c0189c9

Contents?: true

Size: 1.85 KB

Versions: 12

Compression:

Stored size: 1.85 KB

Contents

require: rubocop-rspec
AllCops:
  TargetRubyVersion: 2.5
  Exclude:
    - lib/output/*
    - tmp/**/*
    - vendor/**/*

Layout/IndentFirstHashElement:
  EnforcedStyle: consistent
Layout/AccessModifierIndentation:
  EnforcedStyle: outdent
Layout/EmptyLinesAroundAccessModifier:
  Enabled: true
Layout/AlignArray:
  Enabled: true
Layout/AlignHash:
  Enabled: true
Layout/EmptyLineAfterGuardClause:
  Enabled: true
Layout/SpaceInsideBlockBraces:
  EnforcedStyle: space
  EnforcedStyleForEmptyBraces: no_space
Layout/SpaceInsideHashLiteralBraces:
  EnforcedStyle: space
  EnforcedStyleForEmptyBraces: no_space
Layout/SpaceInsideArrayLiteralBrackets:
  EnforcedStyle: no_space
Layout/EndAlignment:
  EnforcedStyleAlignWith: start_of_line

Lint/UnusedMethodArgument:
  Enabled: true
Lint/UselessAssignment:
  Enabled: true

Metrics/BlockLength:
  Exclude:
    - 'spec/**/*.rb'
Metrics/LineLength:
  Max: 120
Metrics/MethodLength:
  Enabled: true
Metrics/ClassLength:
  Enabled: true
  Max: 125
Metrics/ParameterLists:
  Enabled: true
Metrics/CyclomaticComplexity:
  Enabled: true
Metrics/AbcSize:
  Enabled: true

Naming/UncommunicativeMethodParamName:
  Enabled: false
Naming/AccessorMethodName:
  Enabled: false

RSpec/MessageSpies:
  EnforcedStyle: receive
RSpec/InstanceVariable:
  Enabled: false
RSpec/NestedGroups:
  Enabled: false
RSpec/ExampleLength:
  Enabled: false

Style/Documentation:
  Enabled: false
Style/FrozenStringLiteralComment:
  Enabled: true
Style/NumericLiterals:
  Enabled: true
Style/StringLiterals:
  EnforcedStyle: single_quotes
Style/AndOr:
  Enabled: true
Style/ClassCheck:
  Enabled: true
Style/GuardClause:
  Enabled: true
Style/ClassAndModuleChildren:
  EnforcedStyle: nested
Style/GlobalVars:
  Exclude:
    - 'spec/**/*.rb'
Style/ParallelAssignment:
  Enabled: false

Security/Eval:
  Enabled: true
Security/JSONLoad:
  Enabled: true
Security/YAMLLoad:
  Enabled: true

Version data entries

12 entries across 12 versions & 3 rubygems

Version Path
usps_flags-grades-0.1.6 .rubocop.yml
usps_flags-burgees-0.1.4 .rubocop.yml
usps_flags-grades-0.1.5 .rubocop.yml
usps_flags-grades-0.1.3 .rubocop.yml
usps_flags-burgees-0.1.3 .rubocop.yml
usps_flags-0.5.5 .rubocop.yml
usps_flags-0.5.4 .rubocop.yml
usps_flags-0.5.3 .rubocop.yml
usps_flags-0.5.2 .rubocop.yml
usps_flags-grades-0.1.2 .rubocop.yml
usps_flags-burgees-0.1.2 .rubocop.yml
usps_flags-0.5.1 .rubocop.yml