.understandignore 880 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # .understandignore — patterns for files/dirs to exclude from analysis
  2. # Syntax: same as .gitignore (globs, # comments, ! negation, trailing / for dirs)
  3. # Lines below are suggestions — uncomment to activate.
  4. # Use ! prefix to force-include something excluded by defaults.
  5. #
  6. # Built-in defaults (always excluded unless negated):
  7. # node_modules/, .git/, dist/, build/, obj/, *.lock, *.min.js, etc.
  8. #
  9. # --- From .gitignore (uncomment to exclude) ---
  10. .env
  11. .env_dev
  12. .env_pro
  13. runtime
  14. /dev.env
  15. /pro.env
  16. /test.env
  17. /vendor
  18. /md/*
  19. .DS_Store
  20. *.pem
  21. # --- Privacy / sensitive files ---
  22. **/*privacy*.html
  23. **/cert/**
  24. # --- Test file patterns (uncomment to exclude) ---
  25. # JS / TS
  26. # *.test.*
  27. # *.spec.*
  28. # *.snap
  29. # C# / .NET
  30. # **/*Tests.cs
  31. # **/*Test.cs
  32. # **/*Fixture.cs
  33. # **/*.Tests.csproj
  34. # Java / Kotlin
  35. # **/src/test/**
  36. # **/*Test.java
  37. # **/*IT.java
  38. # **/*Spec.kt
  39. # Go
  40. # **/*_test.go