From 21da954f925b3d0967d690ca6289ff5c1667568c Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Mon, 22 Nov 2021 16:30:28 +0800 Subject: [PATCH] chore: add the `TODOs` file to gitignore I usually keep `TODOs` file in the repository to keep track of the highest priority issues that I'd like to work on next. It isn't listed in a global gitignore configuration because that won't be picked up by npm, so the file could still be accidentally published to the npm registry, unless in projects that have the `files` field in `package.json`. Therefore, I choose to manually ignore the `TODOs` file in each project. --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 5c147615..f7999996 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,7 @@ outfile.cjs +TODOs + # Logs logs *.log -- 2.39.5