mirror of https://github.com/zulip/zulip.git
gitignore: Fix format for excluding .cache/.
Comments in gitignore files must be on their own line.
This commit is contained in:
parent
bd5905da5d
commit
79a5ddc68f
|
@ -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.)
|
||||
|
|
Loading…
Reference in New Issue