Sha256: 98c30d039a266b23927e2efc1086bc4d74c25aff6e4906780f0fa72b09edab3d

Contents?: true

Size: 833 Bytes

Versions: 2

Compression:

Stored size: 833 Bytes

Contents

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

inherit_gem:
  rubocop-bridgetown: .rubocop.yml

AllCops:
  TargetRubyVersion: 3.0
  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

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

Layout/LineLength:
  Max: 120

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
streamlined-0.3.0 .rubocop.yml
streamlined-0.2.0 .rubocop.yml