-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path.gitignore
113 lines (94 loc) · 1.49 KB
/
.gitignore
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# Ignore dev files
to_do.md
production.md
new_features.md
dev/*
test.*
tutorials/*.csv
tutorials/figures/*
tutorials/new_interp*.png
tutorials/*parquet*.py
tutorials/adhish.ipynb
tutorials/sims/*
tutorials/temp.sh
# Ignore documentation build directories
docs/_build/
docs/build/
# Ignore data files
data/*
database/contrib_to_do.md
# Ignore testing files
testing/*
tutorials/Data_Cleaning.ipynb
tutorials/*.json
presentations/*
tutorials/dev*
tutorials/shot*.png
tutorials/adhish.ipynb
# Ignore operating system files
.DS_Store
Thumbs.db
# Ignore editor and IDE files
.vscode/
.idea/
*.sublime-project
*.sublime-workspace
# Ignore build output and compiled files
/build/
/dist/
/out/
/bin/
*.exe
*.dll
*.so
*.dylib
# Ignore package manager directories
/node_modules/
/bower_components/
# Ignore log files and temporary files
*.log
*.tmp
*.swp
# Ignore environment-specific files
.env
.env.local
.env.test
.env.production
# Ignore sensitive or personal information
secrets.yml
secrets.json
*.key
# Ignore database files
*.sqlite
*.db
# Ignore dependencies and lock files
/yarn.lock
/package-lock.json
/composer.lock
# Ignore macOS specific files
.AppleDouble
.LSOverride
# Ignore system-specific files
Icon
Thumbs.db
ehthumbs.db
Desktop.ini
# Ignore custom ignore file
.ignore
# Ignore python cache files
__pycache__/
__pycache__/*
*.py[cod]
# cache files
squadds/joblib_cache/*
# Ignore conda environment
.conda/*
.conda
# Ignore build files
build/
dist/
*.egg-info/
*.egg-info/*
*.egg
*.egg/*
tests/*/*