Last active 5 days ago

Python .gitignore

mreschke's Avatar mreschke revised this gist 5 days ago. Go to revision

1 file changed, 1 insertion, 1 deletion

.gitignore

@@ -1,5 +1,5 @@
1 1 # mReschke Python .gitignore file standard
2 - # Latest Version https://git.mreschke.net/-/snippets/4
2 + # Latest Version https://gist.mreschke.net/mreschke/5b20c8b75bf5407785c8a35d7bdbe17a
3 3 # mReschke 2020-11-17
4 4
5 5 # NOTES:

mreschke's Avatar mreschke revised this gist 5 days ago. Go to revision

1 file changed, 76 insertions

.gitignore(file created)

@@ -0,0 +1,76 @@
1 + # mReschke Python .gitignore file standard
2 + # Latest Version https://git.mreschke.net/-/snippets/4
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
16 + Thumbs.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
40 + pip-log.txt
41 + pip-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/
54 + eggs/
55 + develop-eggs/
56 + __pycache__/
57 + .pytest_cache/
58 +
59 + # Django Files
60 + #
61 +
62 + # Django Folders
63 + /static/
64 +
65 + # JavaScript Files
66 + npm-debug.log
67 + yarn-error.log
68 +
69 + # Javascript Folders
70 + /node_modules/
71 +
72 + # Other Files
73 + /:memory
74 +
75 + # Other Folders
76 + /.vagrant/
Newer Older