123456789101112131415161718192021 |
- inherit_from:
- - https://shopify.github.io/ruby-style-guide/rubocop.yml
- - .rubocop_todo.yml
- AllCops:
- TargetRubyVersion: 2.4
- Lint/SuppressedException:
- Exclude:
- # Warning on test setup, the exception is expected
- - 'test/test_helper.rb'
- Lint/MissingSuper:
- Exclude:
- # We explicitly do not want to call super here
- - 'lib/shopify_api/graphql/http_client.rb'
- Lint/UnderscorePrefixedVariableName:
- Exclude:
- # This is an internal attribute and we want to make sure it's called _headers
- - 'lib/shopify_api/resources/base.rb'
|