From: Haoqun Jiang Date: Mon, 22 Nov 2021 08:30:28 +0000 (+0800) Subject: chore: add the `TODOs` file to gitignore X-Git-Tag: v3.0.0-beta.7~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=21da954f925b3d0967d690ca6289ff5c1667568c;p=thirdparty%2Fvuejs%2Fcreate-vue.git 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. --- diff --git a/.gitignore b/.gitignore index 5c147615..f7999996 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,7 @@ outfile.cjs +TODOs + # Logs logs *.log