.codeclimate.yml 364 B

12345678910111213141516171819202122232425262728
  1. version: "2"
  2. languages:
  3. Ruby: false
  4. JavaScript: false
  5. Python: true
  6. PHP: false
  7. exclude_patterns:
  8. - "*.js"
  9. - "*.rb"
  10. - "*.php"
  11. - "tests/"
  12. plugins:
  13. radon:
  14. enabled: true
  15. exclude_patterns:
  16. - "templates/"
  17. config:
  18. threshold: "D"
  19. checks:
  20. argument-count:
  21. enabled: false
  22. similar-code:
  23. config:
  24. threshold: 40