HEX
Server: Apache
System: Windows NT MAGNETO-ARM 10.0 build 22000 (Windows 10) AMD64
User: Michel (0)
PHP: 7.4.7
Disabled: NONE
Upload Files
File: C:/Ruby27-x64/lib/ruby/gems/2.7.0/gems/public_suffix-5.0.1/.rubocop.yml
inherit_from:
  - .rubocop_opinionated.yml

AllCops:
  Exclude:
    # Exclude .gemspec files because they are generally auto-generated
    - '*.gemspec'
    # Exclude vendored folders
    - 'tmp/**/*'
    - 'vendor/**/*'
    # Exclude artifacts
    - 'pkg/**/*'
    # Other
    - 'test/benchmarks/**/*'
    - 'test/profilers/**/*'
  TargetRubyVersion: 2.6

# I often use @_variable to avoid clashing.
Naming/MemoizedInstanceVariableName:
  Enabled: false

Style/ClassAndModuleChildren:
  Exclude:
    - 'spec/**/*_spec.rb'
    - 'test/**/*_test.rb'

# Dear Rubocop, I don't want to use String#strip_heredoc
Layout/HeredocIndentation:
  Enabled: false

Style/WordArray:
  Enabled: false
  MinSize: 3

Style/SymbolArray:
  Enabled: false
  MinSize: 3