Sha256: d479cefd2a9410014f3890d938d36e1ffc178ef01d119a1b945c9dc805aefde2

Contents?: true

Size: 920 Bytes

Versions: 4

Compression:

Stored size: 920 Bytes

Contents

require:
 - rubocop-bridgetown
 - rubocop-minitest
 - rubocop-rake

inherit_gem:
  rubocop-bridgetown: .rubocop.yml

AllCops:
  TargetRubyVersion: 3.1
  NewCops: enable

  Exclude:
    - .gitignore
    - .rubocop.yml
    - "*.gemspec"

    - Gemfile.lock
    - CHANGELOG.md
    - LICENSE.txt
    - README.md
    - Rakefile

    - bin/**/*
    - test/fixtures/**/*
    - vendor/**/*

# Disabled to aid in template readability
Layout/MultilineBlockLayout:
  Enabled: false

# Disabled to aid in template readability
Lint/AmbiguousBlockAssociation:
  Enabled: false

Metrics/AbcSize:
  Exclude:
  - test/**/*.rb

Metrics/ClassLength:
  Exclude:
  - test/**/*.rb

Metrics/MethodLength:
  Exclude:
  - test/**/*.rb

Naming/BlockForwarding:
  Enabled: false

Style/ArgumentsForwarding:
  Enabled: false

# Disabled to aid in template readability
Style/NestedParenthesizedCalls:
  Enabled: false

Layout/LineLength:
  Max: 120

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
streamlined-0.6.0 .rubocop.yml
streamlined-0.5.2 .rubocop.yml
streamlined-0.5.1 .rubocop.yml
streamlined-0.5.0 .rubocop.yml