Sha256: d71f4897c478ffce6a81794165f8f771805960ed3e93fc1ce5c553062137cdd1

Contents?: true

Size: 1.11 KB

Versions: 4

Compression:

Stored size: 1.11 KB

Contents

require:
  - rubocop-rspec

AllCops:
  Exclude:
    - 'pkg/**/*'
    - 'spec/fixtures/**/*'
  TargetRubyVersion: 2.7

Layout/ArgumentAlignment:
  EnforcedStyle: with_fixed_indentation

Layout/ParameterAlignment:
  Enabled: true
  EnforcedStyle: with_fixed_indentation
  IndentationWidth: 2

Layout/EndOfLine:
  EnforcedStyle: lf

Layout/FirstArrayElementIndentation:
  EnforcedStyle: consistent

Layout/MultilineMethodCallIndentation:
  Enabled: true
  EnforcedStyle: indented

Lint/AmbiguousBlockAssociation:
  Exclude:
    - 'spec/**/*.rb'

Metrics/BlockLength:
  Exclude:
    - '*.gemspec'
    - 'Rakefile'
    - 'spec/**/*.rb'

Metrics/ModuleLength:
  Exclude:
    - 'spec/**/*.rb'

Layout/LineLength:
  Exclude:
    - 'spec/**/*.rb'
  IgnoredPatterns:
    - '^#*'

Naming/RescuedExceptionsVariableName:
  PreferredName: error

Style/Documentation:
  Enabled: false

Style/StringLiterals:
  EnforcedStyle: 'single_quotes'

Style/TrailingCommaInArrayLiteral:
  Enabled: false

Style/TrailingCommaInHashLiteral:
  Enabled: false

RSpec/ExampleLength:
  Max: 80

RSpec/NamedSubject:
  Enabled: false

RSpec/FilePath:
  Enabled: false

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
spandx-rubygems-0.1.3 .rubocop.yml
spandx-rubygems-0.1.2 .rubocop.yml
spandx-rubygems-0.1.1 .rubocop.yml
spandx-rubygems-0.1.0 .rubocop.yml