From fd I'm used to typing -H to search hidden files or -I to not respect .gitignore. They also form a convenient mnemonic, -HI, to search everything.
Unfortunately -H is already in-use, but since -I isn't currently used by ripgrep I thought I'd ask if you'd want to add it as an alias for --no-ignore. Thanks.
Have you read the guide's section on automatic filtering?
Namely, ripgrep already has an alias. -u stops respecting .gitignore. Specifying it again, -uu, will cause ripgrep to search hidden files. Specifying it a third time, -uuu, will cause ripgrep to search binary files.
I did notice in the manpage that -u is equivalent to -I and -uu is equivalent to -HI as described above. I thought it could still be worth adding, but I understand if you don't want two single-letter aliases that do the same thing.
You got it. Single letter aliases are a limited resource, and -u is good enough.
@kbd It's a hidden feature, but (for consistency/symmetry reasons) you can use ripgrep's -u and -uu in fd as well.