Skip to content

Commit c458d64

Browse files
committed
Add .gitignore for Python cache and test output files
1 parent f1d612d commit c458d64

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

.gitignore

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Python cache files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
.Python
7+
8+
# Distribution / packaging
9+
build/
10+
dist/
11+
*.egg-info/
12+
13+
# Test outputs and submissions
14+
submission.json
15+
arc_consciousness_submission.json
16+
*.json.test
17+
18+
# Virtual environments
19+
venv/
20+
env/
21+
ENV/
22+
23+
# IDE
24+
.vscode/
25+
.idea/
26+
*.swp
27+
*.swo
28+
29+
# OS
30+
.DS_Store
31+
Thumbs.db

0 commit comments

Comments
 (0)