countries/country_select

View on GitHub
.rubocop.yml

Summary

Maintainability
Test Coverage
AllCops:
  NewCops: enable
  TargetRubyVersion: 3.0

Metrics/MethodLength:
  Enabled: false

Layout/LineLength:
  Max: 120
  AllowedPatterns: ['^ *# ']

Style/Documentation:
  Enabled: false

Bundler/OrderedGems:
  Enabled: false

Naming/FileName:
  Exclude:
    - 'gemfiles/*'

Metrics/BlockLength:
  Exclude:
    - 'spec/**/*'

Style/MutableConstant:
  Exclude:
    - 'lib/country_select/defaults.rb'
    - 'lib/country_select/formats.rb'

Style/MethodCallWithoutArgsParentheses:
  Exclude:
    - 'lib/country_select/tag_helper.rb'