Exclude Filter
Output will appear here after selecting a directory.
Example Filters
These are some example filters for specific project types
Python
Ignore .git
, .venv
, __pycache__
, .idea
(^|\/)(?:\.git|.venv|__pycache__|.idea)(?:\/|$)
C#
Ignore .git
, .vs
, bin
, obj
(^|\/)(?:\.git|.vs|bin|obj)(?:\/|$)
Node/JavaScript
Ignore .git
, node_modules
, build
, dist
(^|\/)(?:\.git|node_modules|build|dist)(?:\/|$)