.rubocop_todo.yml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. # This configuration was generated by
  2. # `rubocop --auto-gen-config`
  3. # on 2020-10-15 20:32:09 UTC using RuboCop version 0.93.1.
  4. # The point is for the user to remove these configuration records
  5. # one by one as the offenses are removed from the code base.
  6. # Note that changes in the inspected code, or installation of new
  7. # versions of RuboCop, may require this file to be generated again.
  8. # Offense count: 6
  9. # Configuration parameters: EnforcedStyle.
  10. # SupportedStyles: snake_case, camelCase
  11. Naming/VariableName:
  12. Exclude:
  13. - 'lib/shopify_api/resources/fulfillment.rb'
  14. # Offense count: 2
  15. # Cop supports --auto-correct.
  16. Style/ColonMethodCall:
  17. Exclude:
  18. - 'test/base_test.rb'
  19. # Offense count: 2
  20. # Cop supports --auto-correct.
  21. # Configuration parameters: EnforcedStyle, AllowInnerBackticks.
  22. # SupportedStyles: backticks, percent_x, mixed
  23. Style/CommandLiteral:
  24. Exclude:
  25. - 'shopify_api.gemspec'
  26. # Offense count: 150
  27. # Cop supports --auto-correct.
  28. # Configuration parameters: EnforcedStyle.
  29. # SupportedStyles: always, always_true, never
  30. Style/FrozenStringLiteralComment:
  31. Enabled: false
  32. # Offense count: 1
  33. Style/MissingRespondToMissing:
  34. Exclude:
  35. - 'lib/shopify_api/resources/asset.rb'
  36. # Offense count: 5
  37. # Cop supports --auto-correct.
  38. Style/RedundantPercentQ:
  39. Exclude:
  40. - 'shopify_api.gemspec'
  41. # Offense count: 12
  42. # Cop supports --auto-correct.
  43. Style/RedundantSelf:
  44. Exclude:
  45. - 'lib/shopify_api/resources/base.rb'
  46. - 'lib/shopify_api/resources/custom_collection.rb'
  47. - 'lib/shopify_api/resources/customer.rb'
  48. - 'lib/shopify_api/resources/customer_saved_search.rb'
  49. - 'lib/shopify_api/resources/product.rb'
  50. - 'lib/shopify_api/resources/recurring_application_charge.rb'
  51. # Offense count: 1
  52. # Cop supports --auto-correct.
  53. # Configuration parameters: ConvertCodeThatCanStartToReturnNil, AllowedMethods.
  54. # AllowedMethods: present?, blank?, presence, try, try!
  55. Style/SafeNavigation:
  56. Exclude:
  57. - 'lib/shopify_api/resources/custom_collection.rb'
  58. # Offense count: 2
  59. # Cop supports --auto-correct.
  60. # Configuration parameters: EnforcedStyle.
  61. # SupportedStyles: use_perl_names, use_english_names
  62. Style/SpecialGlobalVars:
  63. Exclude:
  64. - 'lib/shopify_api.rb'
  65. - 'shopify_api.gemspec'
  66. # Offense count: 2
  67. # Cop supports --auto-correct.
  68. # Configuration parameters: ExactNameMatch, AllowPredicates, AllowDSLWriters, IgnoreClassMethods, AllowedMethods.
  69. # AllowedMethods: to_ary, to_a, to_c, to_enum, to_h, to_hash, to_i, to_int, to_io, to_open, to_path, to_proc, to_r, to_regexp, to_str, to_s, to_sym
  70. Style/TrivialAccessors:
  71. Exclude:
  72. - 'lib/shopify_api/graphql.rb'