Sha256: be29afa318eeac6629c4233db51d6ca0ff9fd2e3a4d48b293b6ada4d7326fa85

Contents?: true

Size: 971 Bytes

Versions: 3

Compression:

Stored size: 971 Bytes

Contents

# We want Exclude and Include directives from different
#   config files to get merged, not overwritten
inherit_mode:
  merge:
    - Exclude
    - Include

inherit_from:
  - ./base.yml
  - ./internal/ruby-3.3.yml

require:
  - standard
  - standard-performance
  - standard-custom
  - rubocop-performance

# TODO: Load basic rules for this version of Ruby from standard, once Standard includes it!
# See: https://github.com/standardrb/standard/pull/560
#   inherit_gem:
#     standard: config/ruby-3.3.yml
# Rules are overridden in a LIFO stack.
# If rubocop-performance is loaded first, and standard-performance after it,
#   then rubocop-performance's rules will take precedence.
# This is the opposite of what you might expect.
# Below: standard's rules override rubocop-performance's (mostly disabling rules)
inherit_gem:
  standard: config/base.yml
  standard-performance: config/base.yml
  standard-custom: config/base.yml
  rubocop-performance: config/default.yml

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
standard-rubocop-lts-1.0.7 config/ruby-3.3.yml
standard-rubocop-lts-1.0.6 config/ruby-3.3.yml
standard-rubocop-lts-1.0.5 config/ruby-3.3.yml