.codeclimate.yml 370 B

12345678910111213141516171819202122
  1. engines:
  2. fixme:
  3. enabled: true
  4. phpcodesniffer:
  5. enabled: true
  6. config:
  7. standard: "PSR1,PSR2"
  8. ignore_warnings: true
  9. phpmd:
  10. enabled: true
  11. config:
  12. file_extensions: "php"
  13. rulesets: "phpmd.xml"
  14. markdownlint:
  15. enabled: true
  16. ratings:
  17. paths:
  18. - "**.php"
  19. exclude_paths:
  20. - examples/**/*
  21. - tests/**/*
  22. - "**/vendor/**/*"