.codeclimate.yml 641 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. ---
  2. engines:
  3. brakeman:
  4. enabled: true
  5. bundler-audit:
  6. enabled: true
  7. csslint:
  8. enabled: true
  9. coffeelint:
  10. enabled: true
  11. duplication:
  12. enabled: true
  13. config:
  14. languages:
  15. - ruby
  16. - javascript
  17. - python
  18. - php
  19. eslint:
  20. enabled: true
  21. fixme:
  22. enabled: true
  23. phpmd:
  24. enabled: true
  25. rubocop:
  26. enabled: true
  27. ratings:
  28. paths:
  29. - Gemfile.lock
  30. - "**.erb"
  31. - "**.haml"
  32. - "**.rb"
  33. - "**.rhtml"
  34. - "**.slim"
  35. - "**.css"
  36. - "**.coffee"
  37. - "**.inc"
  38. - "**.js"
  39. - "**.jsx"
  40. - "**.module"
  41. - "**.php"
  42. - "**.py"
  43. exclude_paths:
  44. - config/
  45. - db/
  46. - script/
  47. - test/
  48. - vendor/