1
0

strict.yml 496 B

123456789101112131415161718192021222324
  1. Lint/Debugger: # Remove any `binding.pry`
  2. Enabled: true
  3. Exclude: []
  4. RSpec/Focus: # Require full spec run on CI
  5. Enabled: true
  6. Exclude: []
  7. Rails/Output: # Remove any `puts` debugging
  8. inherit_mode:
  9. merge:
  10. - Include
  11. Enabled: true
  12. Exclude: []
  13. Include:
  14. - spec/**/*.rb
  15. Rails/FindEach: # Using `each` could impact performance, use `find_each`
  16. Enabled: true
  17. Exclude: []
  18. Rails/UniqBeforePluck: # Require `uniq.pluck` and not `pluck.uniq`
  19. Enabled: true
  20. Exclude: []