-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
77 lines (69 loc) · 1.09 KB
/
.gitignore
File metadata and controls
77 lines (69 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# Global / Operating Systems
.DS_Store
Thumbs.db
*.swp
*.bak
*~
# IDEs & Text Editors
.vscode/
.idea/
*.sublime-project
*.sublime-workspace
.scratch/
# Environments & Dependency Managers
.env
.env.*
!.env.example
.venv/
venv/
env/
ENV/
bin/
lib/
develop-eggs/
dist/
build/
eggs/
.eggs/
*.egg-info/
*.egg
__pypackages__/
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Python Artifacts & Tool Caches
__pycache__/
*.py[cod]
*$py.class
.pytest_cache/
.mypy_cache/
.ruff_cache/
.ipynb_checkpoints/
.hypothesis/
.dmypy.json
dmypy.json
# Test & Coverage Reports
.coverage
.coverage.*
htmlcov/
coverage.xml
*.cover
nosetests.xml
# Documentation
docs/_build/
site/
# Project Specific Directories (python-project-blueprint)
# Ignore the entire log directory (contains coverage, caches, and app logs)
.log/
# Ignore everything in config except for the shared templates
.config/*
!.config/*.example
!.config/*.example.*
!.config/config.dev.toml
# Data Handling
# Ignore all data files but keep the directory structure via .gitkeep
data/raw/*
data/processed/*
!data/raw/.gitkeep
!data/processed/.gitkeep