pub(crate) const DEFAULT_INCLUDES: &[&str] = &["*.md"];
pub(crate) const DEFAULT_EXCLUDES: &[&str] = &[
".git/",
".hg/",
".svn/",
".bzr/",
"_darcs/",
".venv/",
"venv/",
"__pycache__/",
".tox/",
".nox/",
".mypy_cache/",
".ruff_cache/",
".pytest_cache/",
".eggs/",
"*.egg-info/",
"build/",
"dist/",
"node_modules/",
".next/",
".nuxt/",
".output/",
".cache/",
".parcel-cache/",
".turbo/",
".idea/",
".vscode/",
".vs/",
".fleet/",
"coverage/",
"htmlcov/",
".coverage/",
"vendor/",
"third_party/",
"Pods/",
"target/",
".terraform/",
];