Skip to content

Commit ef2a3ad

Browse files
committed
chore: update .gitignore for local and env files
- Add /tmp*, /.bin*, and /.patches/ to ignore local files - Add .dmypy.json to ignore mypy cache - Add /tags to ignore Exuberant Ctags tag file - Add /.source* to ignore environment variable files
1 parent fafe8f6 commit ef2a3ad

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.gitignore

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
# Local temporary files
2-
tmp/
1+
# Local files
2+
/tmp*/
3+
/.bin*/
4+
/.patches/
35

46
# Byte-compiled / optimized / DLL files
57
__pycache__/
@@ -8,6 +10,13 @@ __pycache__/
810

911
# mypy
1012
.mypy_cache/
13+
.dmypy.json
14+
15+
# Exuberant Ctags tag file
16+
/tags
17+
18+
# Env variables
19+
/.source*
1120

1221
# Distribution / packaging
1322
.Python

0 commit comments

Comments
 (0)