Last active 5 days ago

Python .gitignore

Revision 96c5ac92e5143408af6a41b92a4b492160452756

.gitignore Raw
1# mReschke Python .gitignore file standard
2# Latest Version https://gist.mreschke.net/mreschke/5b20c8b75bf5407785c8a35d7bdbe17a
3# mReschke 2020-11-17
4
5# NOTES:
6# Folders should be denoted with a trailing /
7# /env/ denotes only the root level ./env folder be ignored
8# env/ denotes ANY env folder be ignored, even in ./some/deep/folder/env
9# Sames goes for files
10
11# OS Files
12.DS_Store
13._.DS_Store
14._.TemporaryItems
15.AppleDouble
16Thumbs.db
17.nfs*
18.swp
19
20# OS Folders
21#
22
23# IDE Files
24#
25
26# IDE Folders
27/.idea/
28/.vscode/
29
30# Python Files
31/.env
32/.coverage
33*.pyc
34*.py[cod]
35*.egg
36.Python
37/.installed.cfg
38*.manifest
39*.spec
40pip-log.txt
41pip-delete-this-directory.txt
42
43# Python Folders
44/instance/
45/venv/
46/.venv
47/env/
48/htmlcov/
49/html/
50/sdist/
51/dist/
52/build/
53*.egg-info/
54eggs/
55develop-eggs/
56__pycache__/
57.pytest_cache/
58
59# Django Files
60#
61
62# Django Folders
63/static/
64
65# JavaScript Files
66npm-debug.log
67yarn-error.log
68
69# Javascript Folders
70/node_modules/
71
72# Other Files
73/:memory
74
75# Other Folders
76/.vagrant/
77