gitignore: Fix format for excluding .cache/.

Comments in gitignore files must be on their own line.
This commit is contained in:
Greg Price 2017-11-17 14:26:40 -08:00
parent bd5905da5d
commit 79a5ddc68f
1 changed files with 4 additions and 1 deletions

5
.gitignore vendored
View File

@ -12,6 +12,8 @@
# * Subdirectories with several internal things to ignore get their own
# `.gitignore` files.
#
# * Comments must be on their own line. (Otherwise they don't work.)
#
# See `git help ignore` for details on the format.
## Config files for the dev environment
@ -52,7 +54,8 @@ zulip.kdev4
*.sublime-workspace
.vscode/
*.DS_Store
.cache/ # Generated by VSCode's test runner
# .cache/ is generated by VSCode's test runner
.cache/
## Miscellaneous
# (Ideally this section is empty.)