.codacy.yaml 965 B

123456789101112131415161718192021222324252627282930313233
  1. ---
  2. engines:
  3. duplication:
  4. minTokenMatch: 80
  5. exclude_paths:
  6. - "spec/fixtures/**"
  7. - "packages/*/spec/fixtures/**"
  8. # Since Codacy exposes significantly little on the config.
  9. # We can use the rest of this document to solidify our settings.
  10. #
  11. # Quality Settings: (Below are changed values, rest are default)
  12. # * Pull requests won't pass the quality gate when:
  13. # - New issues are over: 15 'critical'
  14. # * Commits won't pass the quality gate:
  15. # - New issues are over: 15 'critical'
  16. # * The repository is below the quality goals when:
  17. # - Issues are over: 20%
  18. # - Complexity is over: 10%
  19. # - File is complex when over: 20
  20. # - Duplication is over: 30
  21. # - File is duplicated when over: 1 'cloned block'
  22. # - Coverage is under: 60%
  23. # Enabled Engines:
  24. # - CSSLint 1.0.5
  25. # - CoffeeLint 2.1.0
  26. # - ESLint 8.23.1
  27. # - Hadolint 1.18.2
  28. # - Jackson Linter 2.10.2
  29. # - PMD 6.48.0
  30. # - SpellCheck 0.8.0
  31. # - Stylelint 14.2.0
  32. #