Skip to content

Commit 0be66c9

Browse files
author
miranov25
committed
add: .gitignore for Python project
Prevents tracking of: - Python cache files - Editor backups - Test artifacts - Temporary files
1 parent 4489253 commit 0be66c9

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
.Python
7+
8+
# Testing
9+
.pytest_cache/
10+
.coverage
11+
htmlcov/
12+
.tox/
13+
14+
# Backup files
15+
*.bak
16+
*~
17+
*.swp
18+
*.swo
19+
*.orig
20+
21+
# Editor
22+
.vscode/
23+
.idea/
24+
*.code-workspace
25+
.DS_Store
26+
27+
# Temporary
28+
*.tmp
29+
*.temp
30+
diff.txt
31+
32+
# Benchmark output (optional - uncomment if you don't want results in git)
33+
# benchmarks/bench_out/*.json
34+
# benchmarks/bench_out/*.txt
35+
# benchmarks/bench_out/*.csv
36+
# benchmarks/bench_out/*.png

0 commit comments

Comments
 (0)