Skip to content

Commit cbd0300

Browse files
committed
Merge pull request #1005 from rowillia/improve-git-ignore
Improve `.gitignore` to filter out venvs, eggs, and PyCharm files.
2 parents bb11e5d + b660f36 commit cbd0300

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.gitignore

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
build/
22
__pycache__
3-
*.pyc
3+
*.py[cod]
44
*~
55
@*
66
/build
77
/env
88
docs/build/
99
*.iml
1010
/out/
11+
.venv/
12+
13+
# Packages
14+
*.egg
15+
*.egg-info
16+
17+
#IDEs
18+
.idea

0 commit comments

Comments
 (0)