What's wrong with this entry?
Anonymous. No account, no email.
The ls command now respects .gitignore patterns when listing files and directories. This provides a cleaner view of your project by automatically filtering out ignored files.
New parameter: The ls command now accepts an optional ignore parameter where you can provide an array of glob patterns to exclude from the listing.
Example usage:
# List files while respecting .gitignore
claude ls /path/to/directory
# List files with custom ignore patterns
claude ls /path/to/directory --ignore "*.tmp" "*.log"