# .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