DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.
Glob's ignore and hidden-file behaviour is env-controlled
Use it now
Useful3Signal2
SearchNotablenot in their notes
Two env vars control whether Glob searches ignored files and dotfiles.
What's wrong with this entry?
Anonymous. No account, no email.
CLAUDE_CODE_GLOB_NO_IGNORECLAUDE_CODE_GLOB_HIDDEN
What
Glob searches ignored files and dotfiles by default. Both are switchable through CLAUDE_CODE_GLOB_NO_IGNORE and CLAUDE_CODE_GLOB_HIDDEN, each defaulting to true. This pairing existed before this release; what is visible now is that the two variables map straight onto the underlying search's ignore and hidden flags.
Usage
CLAUDE_CODE_GLOB_NO_IGNORE=false claude
Evidence
process.env.CLAUDE_CODE_GLOB_NO_IGNORE || "true"
Strings lifted out of the shipped bundle, so the claim above can be checked against them.