-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.gitignore
More file actions
158 lines (158 loc) · 1.79 KB
/
.gitignore
File metadata and controls
158 lines (158 loc) · 1.79 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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# Data file extensions
# They are duplicated in upper case and in some cases mixed case to cover all bases
# If you want to make the parsing overall case-insensitive, you can use the following:
# git config core.ignorecase false
# Version: 2026-02-27
*.gpkg
*.GPKG
*.bak
*.BAK
*.tmp
*.TMP
*.aux
*.AUX
*.mat
*.MAT
*.sav
*.SAV
*.sas7bdat
*.SAS7BDAT
*.dta
*.DTA
*.csv
*.CSV
*.tsv
*.TSV
*.RData
*.RDATA
*.rdata
*.Rdata
*.Rds
*.RDs
*.RDS
*.rds
*.RDA
*.Rda
*.raw
*.Raw
*.RAW
*.dbf
*.DBF
*.prj
*.PRJ
*.shp
*.SHP
*.shx
*.SHX
*.xml
*.XML
*.xpt
*.XPT
*.cpg
*.CPG
*.sbn
*.SBN
*.sbx
*.SBX
*.mpk
*.MPK
*.tfw
*.TFW
*.pkl
*.PKL
*.pbf
*.PBF
*.jld2
*.JLD2
*.dat
*.DAT
*.Dat
*.feather
*.pickle
*.tab
*.TAB
# Not sure what this, but unlikely to be a false positive; probably parquet for lazy folks
*.p
*.P
# Sometimes, these are data files, too
*.txt
*.TXT
*.asc
*.ASC
# Usually, we include images, but TIFF files can be huge
*.tif*
*.TIF*
*.ovr
*.OVR
*.lyrx
*.lyrx
# Archives
*.rar
*.RAR
*.zip
*.ZIP
*.gz
*.tgz
*.xz
*.7z
*.tar
*.bz2
*.BZ2
# Databases
**/.*gdb/
*.sqlite
*.SQLITE
# Random binary formats
*.bin
*.BIN
*.exe
*.EXE
*.dll
*.DLL
*.so
*.SO
# MacOS specific files and directories
*.DS_Store
*.DS_store
*.ds_store
__MACOSX/
*.dmg
*.DMG
# Windows specific stuff?
Thumbs.db
# Stata-specific temp files
*.stswp
# Python-specific temp files
.ipynb_checkpoints
*.pyc
__pycache__/
# build-specific directories
.rproj*
.Rhistory
.Rproj.user
test
.vscode
*.npy
__pycache__
libraries
# Exclusions we need for our work
!R*.txt
!R*.TXT
!pii_stata_output.csv
!code-check.xlsx
!signalcommands.txt
!stopwords.txt
!candidatepackages.xlsx
!requirements*.txt
# Exclusions we need
build/requirements.txt
codeocean-*-live
tmp
cache
# some files which should never be included
*.lic
*.LIC
# Ignore all files in any directory named "data"
**/data/*
.env
*.sif