Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit b9d09c1

Browse filesBrowse files
committed
Group .gitignore entries by purpose
- Divide .gitignore entries into groups - Label the groups with comments - Add `__pycache__/` even though it should only contain *.pyc and *.pyo - Add `monkeytype.sqlite3.*` for compressed copies of that database - Remove `/*.egg-info` because `/*egg-info` covers it
1 parent fe082ad commit b9d09c1
Copy full SHA for b9d09c1

File tree

1 file changed

+35
-13
lines changed
Filter options

1 file changed

+35
-13
lines changed

‎.gitignore

Copy file name to clipboard
+35-13Lines changed: 35 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,49 @@
1+
# Cached Python bytecode
2+
__pycache__/
13
*.py[co]
4+
5+
# Other caches
6+
.cache/
7+
.mypy_cache/
8+
.pytest_cache/
9+
10+
# Transient editor files
211
*.swp
312
*~
13+
14+
# Editor configuration
15+
nbproject
16+
*.sublime-workspace
17+
/.vscode/
18+
.idea/
19+
20+
# Virtual environments
421
.env/
522
env/
623
.venv/
724
venv/
8-
/*.egg-info
25+
26+
# Build output
27+
/*egg-info
928
/lib/GitPython.egg-info
10-
cover/
11-
.coverage
12-
.coverage.*
1329
/build
1430
/dist
1531
/doc/_build
16-
nbproject
17-
*.sublime-workspace
18-
.DS_Store
19-
/*egg-info
32+
33+
# Tox builds/environments
2034
/.tox
21-
/.vscode/
22-
.idea/
23-
.cache/
24-
.mypy_cache/
25-
.pytest_cache/
35+
36+
# Code coverage output
37+
cover/
38+
.coverage
39+
.coverage.*
40+
41+
# Monkeytype output
2642
monkeytype.sqlite3
43+
monkeytype.sqlite3.*
44+
45+
# Manual command output
2746
output.txt
47+
48+
# Finder metadata
49+
.DS_Store

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.