Skip to content

Commit

Permalink
chore: add the TODOs file to gitignore
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
haoqunjiang committed Nov 22, 2021
1 parent d634b96 commit 21da954
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
outfile.cjs

TODOs

# Logs
logs
*.log
Expand Down

0 comments on commit 21da954

Please sign in to comment.