.codeclimate.yml 308 B

123456789101112131415161718192021
  1. engines:
  2. duplication:
  3. enabled: true
  4. config:
  5. languages:
  6. - php
  7. fixme:
  8. enabled: true
  9. phpcodesniffer:
  10. enabled: true
  11. phpmd:
  12. enabled: true
  13. markdownlint:
  14. enabled: true
  15. ratings:
  16. paths:
  17. - "**.php"
  18. exclude_paths:
  19. - examples/**/*
  20. - tests/**/*
  21. - "**/vendor/**/*"