codeclimate.yml 397 B

123456789101112131415161718192021222324252627282930
  1. ---
  2. engines:
  3. duplication:
  4. enabled: false
  5. config:
  6. languages:
  7. - ruby
  8. - javascript
  9. - python
  10. - php
  11. fixme:
  12. enabled: true
  13. pep8:
  14. enabled: true
  15. radon:
  16. enabled: true
  17. config:
  18. threshold: "C"
  19. ratings:
  20. paths:
  21. - "**.inc"
  22. - "**.js"
  23. - "**.jsx"
  24. - "**.module"
  25. - "**.php"
  26. - "**.py"
  27. - "**.rb"
  28. exclude_paths:
  29. - test/**/*
  30. - docs/**/*