Sha256: de6eec3279ec4b708606d44e45eba6d4f64dec40e034a774411fe52578d71e48

Contents?: true

Size: 1.79 KB

Versions: 2

Compression:

Stored size: 1.79 KB

Contents

require:
  - solidus_dev_support/rubocop

AllCops:
  NewCops: disable

Layout/FirstArgumentIndentation:
  EnforcedStyle: consistent

Layout/FirstArrayElementIndentation:
  EnforcedStyle: consistent

Layout/FirstHashElementIndentation:
  EnforcedStyle: consistent

Layout/MultilineMethodCallIndentation:
  EnforcedStyle: indented

Naming/VariableNumber:
  Enabled: false

# We use this extensively, the alternatives are not viable or desirable.
RSpec/AnyInstance:
  Enabled: false

# No need to make the code more complex for no real gain.
RSpec/MessageSpies:
  Enabled: false

# Let's consider legitimate to have multiple expectations within an example.
RSpec/MultipleExpectations:
  Enabled: false

# Allow to use subject as is, no big deal.
RSpec/NamedSubject:
  Enabled: false

# Let's set this to some really exagerate value.
RSpec/NestedGroups:
  Max: 8

# We don't use the FactoryBot mixin
RSpec/FactoryBot/SyntaxMethods:
  Enabled: false

RSpec/VerifiedDoubles:
  # Sometimes you really need an "anything" double
  IgnoreSymbolicNames: true

Style/FrozenStringLiteralComment:
  Exclude:
    - spec/**/*
    - db/migrate/**/*
    - bin/**/*

Style/ExplicitBlockArgument:
  Exclude:
    - lib/solidus_paypal_braintree/request_protection.rb

Rails/SkipsModelValidations:
  Exclude:
    - db/migrate/**/*

Rails/ReflectionClassName:
  Exclude:
    - app/models/solidus_paypal_braintree/customer.rb
    - app/models/solidus_paypal_braintree/source.rb

RSpec/MultipleMemoizedHelpers:
  Exclude:
    - spec/models/solidus_paypal_braintree/transaction_import_spec.rb
    - spec/models/solidus_paypal_braintree/response_spec.rb
    - spec/models/solidus_paypal_braintree/gateway_spec.rb
    - spec/controllers/solidus_paypal_braintree/client_tokens_controller_spec.rb
    - spec/features/frontend/braintree_credit_card_checkout_spec.rb

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
solidus_paypal_braintree-2.0.0 .rubocop.yml
solidus_paypal_braintree-1.2.0 .rubocop.yml