| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- # .understandignore — patterns for files/dirs to exclude from analysis
- # Syntax: same as .gitignore (globs, # comments, ! negation, trailing / for dirs)
- # Lines below are suggestions — uncomment to activate.
- # Use ! prefix to force-include something excluded by defaults.
- #
- # Built-in defaults (always excluded unless negated):
- # node_modules/, .git/, dist/, build/, obj/, *.lock, *.min.js, etc.
- #
- # --- From .gitignore (uncomment to exclude) ---
- .env
- .env_dev
- .env_pro
- runtime
- /dev.env
- /pro.env
- /test.env
- /vendor
- /md/*
- .DS_Store
- *.pem
- # --- Privacy / sensitive files ---
- **/*privacy*.html
- **/cert/**
- # --- Test file patterns (uncomment to exclude) ---
- # JS / TS
- # *.test.*
- # *.spec.*
- # *.snap
- # C# / .NET
- # **/*Tests.cs
- # **/*Test.cs
- # **/*Fixture.cs
- # **/*.Tests.csproj
- # Java / Kotlin
- # **/src/test/**
- # **/*Test.java
- # **/*IT.java
- # **/*Spec.kt
- # Go
- # **/*_test.go
|