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 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
|
# Set the default behavior, in case people don't have core.autocrlf set.
* text eol=lf
# Explicitly declare text files you want to always be normalized and converted
# to native line endings on checkout.
*.txt text
# Source code
*.c text
*.cpp text
*.inc text
*.ipynb text
*.h text
*.py text
*.py3 text
*.pxd text
*.pyw text
*.pyx text
*.qss text
*.r text
*.R text
*.rb text
*.Rmd text
*.Rnw text
*.sh text
# Documentation
*.adoc text
*.latex text
*.LaTeX text
*.markdown text
*.md text
*.po text
*.pot text
*.rst text
*.tex text
*.TeX text
*.tmpl text
*.tpl text
# Web
*.atom text
*.css text
*.htm text
*.html text
*.js text
*.jsx text
*.json text
*.php text
*.pl text
*.rss text
*.sass text
*.scss text
*.xht text
*.xhtml text
# Configuration
*.cfg text
*.cnf text
*.conf text
*.config text
*.desktop text
*.inf text
*.ini text
*.plist text
*.toml text
*.xml text
*.yml text
*.yaml text
# Plain text data
*.cdl text
*.csv text
*.dif text
*.geojson text
*.gml text
*.kml text
*.Rdata text
*.RData text
*.sql text
*.tab text
*.tsv text
*.wkt text
# Special files
.*rc text
.checkignore text
.ciocheck text
.ciocopyright text
.editorconfig text
.gitattributes text
.gitconfig text
.gitignore text
.gitmodules text
*.lektorproject text
.nojekyll text
.project text
AUTHORS text
CHANGELOG text
CHANGES text
CONTRIBUTING text
INSTALL text
license text
LICENSE text
NEWS text
NOTICES text
readme text
*README* text
RELEASE text
TODO text
browserslist text
contents.lr text
makefile text
Makefile text
MANIFEST.in text
# Declare files that will always have CRLF line endings on checkout.
*.bat text eol=crlf
*.vbs text eol=crlf
*.ps1 text eol=crlf
# Denote all files that are truly binary and should not be modified.
# Executable
*.app binary
*.bin binary
*.deb binary
*.dll binary
*.dylib binary
*.elf binary
*.exe binary
*.ko binary
*.lib binary
*.msi binary
*.o binary
*.obj binary
*.pyc binary
*.pyd binary
*.pyo binary
*.rdb binary
*.rdx binary
*.Rdx binary
*.rpm binary
*.so binary
*.sys binary
# Data
*.cdf binary
*.db binary
*.dta binary
*.feather binary
*.fit binary
*.fits binary
*.fts binary
*.fods binary
*.geotiff binary
*.gpkg binary
*.h4 binary
*.h5 binary
*.hdf binary
*.hdf4 binary
*.hdf5 binary
*.mat binary
*.nc binary
*.npy binary
*.npz binary
*.odb binary
*.ods binary
*.p binary
*.parquet binary
*.pickle binary
*.pkl binary
*.rds binary
*.Rds binary
*.sav binary
*.sqlite binary
*.wkb binary
*.xls binary
*.XLS binary
*.xlsx binary
*.XLSX binary
# Documents
*.doc binary
*.DOC binary
*.docx binary
*.DOCX binary
*.epub binary
*.fodp binary
*.fodt binary
*.odp binary
*.odt binary
*.pdf binary
*.PDF binary
*.ppt binary
*.PPT binary
*.pptx binary
*.PPTX binary
*.rtf binary
*.RTF binary
# Graphics
*.ai binary
*.bmp binary
*.eps binary
*.fodg binary
*.gif binary
*.icns binary
*.ico binary
*.jp2 binary
*.jpeg binary
*.jpg binary
*.mo binary
*.pdn binary
*.png binary
*.PNG binary
*.psd binary
*.odg binary
*.svg binary
*.svgz binary
*.tif binary
*.tiff binary
*.webp binary
*.xcf binary
# Fonts
*.eot binary
*.otc binary
*.otf binary
*.ttc binary
*.ttf binary
*.woff binary
*.woff2 binary
# Audio/Video
*.aac binary
*.flac binary
*.mka binary
*.mkv binary
*.mp3 binary
*.mp4 binary
*.oga binary
*.ogg binary
*.ogv binary
*.opus binary
*.wav binary
*.webm binary
# Archives
*.7z binary
*.bz2 binary
*.dmg binary
*.gz binary
*.lz binary
*.lzma binary
*.rar binary
*.sz binary
*.tar binary
*.tbz2 binary
*.tgz binary
*.tlz binary
*.txz binary
*.xz binary
*.zip binary
# Spyder-related
*.results binary
*.spydata binary
# Other
*.bak binary
*.lnk binary
*.temp binary
*.tmp binary
|