Skip to content

Commit 9ac8bf7

Browse files
Michael0x2agvanrossum
authored andcommitted
Add .DS_Store, *.swp, and .incremental_checker_cache.json to gitignore (#1950)
.DS_Store appears on Macs, *.swp is a temporary file Vim creates when editing a file, and .incremental_checker_cache.json should probably be ignored for the same reason .mypy_cache/ should be ignored.
1 parent 255fb61 commit 9ac8bf7

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,15 @@ docs/build/
1010
/out/
1111
.venv/
1212
.mypy_cache/
13+
.incremental_checker_cache.json
1314

1415
# Packages
1516
*.egg
1617
*.egg-info
1718

18-
#IDEs
19+
# IDEs
1920
.idea
21+
*.swp
22+
23+
# Operating Systems
24+
.DS_store

0 commit comments

Comments
 (0)