Skip to content

Commit cb08458

Browse files
johnlettmanCZDanol
authored andcommitted
ni(gitignore): expand gitignore for editor/OS pollution
This commit expands `.gitignore` to cover pollution from editors, Operating Systems, and various Python tools. fix(gitignore): add newline to `.gitignore`
1 parent 33317ab commit cb08458

1 file changed

Lines changed: 61 additions & 2 deletions

File tree

.gitignore

Lines changed: 61 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,63 @@
1+
### Python
2+
# virtualenv
3+
.venv
4+
venv/
5+
ENV/
6+
7+
# pyenv
8+
.python-version
9+
10+
# Byte-compiled / optimized / DLL files
11+
__pycache__/
12+
*.py[cod]
13+
*$py.class
14+
15+
# Distribution / packaging
16+
.Python
17+
env/
18+
build/
19+
develop-eggs/
20+
dist/
21+
downloads/
22+
eggs/
23+
.eggs/
24+
lib/
25+
lib64/
26+
parts/
27+
sdist/
28+
var/
29+
wheels/
30+
*.egg-info/
31+
.installed.cfg
32+
*.egg
33+
34+
### Generated documentation
135
docs/
2-
**/__pycache__
3-
**/venv
36+
37+
### Logs
438
tests/logs/
39+
40+
### Editors
41+
# JetBrains
42+
.idea
43+
44+
# VSCode settings
45+
.vscode
46+
47+
### Operating System pollution
48+
# macOS
49+
.DS_Store
50+
.AppleDouble
51+
.LSOverride
52+
53+
# Linux
54+
.Trash-*
55+
*~
56+
.directory
57+
58+
# Windows
59+
[Dd]esktop.ini
60+
Thumbs.db
61+
Thumbs.db:encryptable
62+
ehthumbs.db
63+
ehthumbs_vista.db

0 commit comments

Comments
 (0)