Sha256: 31a05eafe752bbd26ac02767584e738ba53b2391f255452249c5155d62ae661a

Contents?: true

Size: 961 Bytes

Versions: 24

Compression:

Stored size: 961 Bytes

Contents

# all the style related cops comes from https://github.com/Shopify/ruby-style-guide
inherit_gem:
  rubocop-shopify: rubocop.yml

require:
  - rubocop-minitest
  - rubocop-performance
  - rubocop-rake

AllCops:
  TargetRubyVersion: 3.0
  Exclude:
    - "data/**/*"
  NewCops: enable

Layout/LineLength:
  Enabled: false

# The problem with assert(foo) is that it'll pass if foo is 1.
# But there are times when we want to be sure that foo is true, not just truthy.
# So, let's allow `assert_equal true, foo` without complaints.
Minitest/AssertTruthy:
  Enabled: false

Minitest/MultipleAssertions:
  Enabled: false

# The problem with refute(foo) is that it'll pass if foo is nil.
# But there are times when we want to be sure that foo is false, not just falsy.
# So, let's allow `assert_equal false, foo` without complaints.
Minitest/RefuteFalse:
  Enabled: false

Lint/Debugger:
  Exclude:
    - "bin/console"

Gemspec/DevelopmentDependencies:
  Enabled: true

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
worldwide-0.10.3 .rubocop.yml
worldwide-0.10.2 .rubocop.yml
worldwide-0.10.1 .rubocop.yml
worldwide-0.10.0 .rubocop.yml
worldwide-0.9.0 .rubocop.yml
worldwide-0.8.0 .rubocop.yml
worldwide-0.7.1 .rubocop.yml
worldwide-0.7.0 .rubocop.yml
worldwide-0.6.8 .rubocop.yml
worldwide-0.6.7 .rubocop.yml
worldwide-0.6.6 .rubocop.yml
worldwide-0.6.5 .rubocop.yml
worldwide-0.6.4 .rubocop.yml
worldwide-0.6.3 .rubocop.yml
worldwide-0.6.2 .rubocop.yml
worldwide-0.6.1 .rubocop.yml
worldwide-0.6.0 .rubocop.yml
worldwide-0.5.1 .rubocop.yml
worldwide-0.5.0 .rubocop.yml
worldwide-0.4.1 .rubocop.yml