.rubocop.yml 553 B

123456789101112131415161718192021
  1. inherit_from:
  2. - https://shopify.github.io/ruby-style-guide/rubocop.yml
  3. - .rubocop_todo.yml
  4. AllCops:
  5. TargetRubyVersion: 2.4
  6. Lint/SuppressedException:
  7. Exclude:
  8. # Warning on test setup, the exception is expected
  9. - 'test/test_helper.rb'
  10. Lint/MissingSuper:
  11. Exclude:
  12. # We explicitly do not want to call super here
  13. - 'lib/shopify_api/graphql/http_client.rb'
  14. Lint/UnderscorePrefixedVariableName:
  15. Exclude:
  16. # This is an internal attribute and we want to make sure it's called _headers
  17. - 'lib/shopify_api/resources/base.rb'