From e4ce078580f7eac8cf1c56122e99be28e3830247 Mon Sep 17 00:00:00 2001 From: "John L. Villalovos" Date: Wed, 26 May 2021 21:06:43 -0700 Subject: [PATCH] chore: make certain dotfiles searchable by ripgrep By explicitly NOT excluding the dotfiles we care about to the .gitignore file we make those files searchable by tools like ripgrep. By default dotfiles are ignored by ripgrep and other search tools (not grep) --- .gitignore | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.gitignore b/.gitignore index 8fab15723..6addc6bf8 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,14 @@ docs/_build .tox .venv/ venv/ + +# Include tracked hidden files and directories in search and diff tools +!.commitlintrc.json +!.dockerignore +!.github/ +!.gitignore +!.gitlab-ci.yml +!.mypy.ini +!.pre-commit-config.yaml +!.readthedocs.yml +!.renovaterc.json