-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
55 lines (46 loc) · 678 Bytes
/
Copy path.gitignore
File metadata and controls
55 lines (46 loc) · 678 Bytes
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
# macOS
.DS_Store
__MACOSX/
# Python
__pycache__/
*.py[cod]
# Jupyter
.ipynb_checkpoints/
*.nbconvert.ipynb
notebooks/.nbconvert-webpdf-site/
notebooks/.playwright-browsers/
# Local environments
.venv/
venv/
env/
ENV/
.python-version
# Editor settings
.vscode/
.idea/
# R / RStudio
.Rproj.user/
.Rhistory
.RData
.Ruserdata
# Project data artifacts
data/raw/*
!data/raw/.gitkeep
data/interim/*
!data/interim/.gitkeep
data/processed/*
!data/processed/.gitkeep
# Generated reports and analysis outputs
reports/outputs/*
!reports/outputs/.gitkeep
# Logs and temporary files
*.log
*.tmp
*.temp
*.swp
*~
# Common local caches
.pytest_cache/
.mypy_cache/
.ruff_cache/
.cache/