-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.gitattributes
45 lines (37 loc) · 884 Bytes
/
.gitattributes
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
# Auto detect text files and perform line-ending normalization
* text=auto
# Documentation
*.md text diff=markdown linguist-detectable=true linguist-documentation=false
*.mdx text diff=markdown linguist-detectable=true linguist-documentation=false
*.txt text
*.yml text
*.yaml text
# Python
*.py text diff=python linguist-detectable=true
requirements.txt text
# Web files
*.html text diff=html linguist-detectable=true
*.css text diff=css linguist-detectable=true
*.js text diff=javascript linguist-detectable=true
*.json text
# Git Config
.gitattributes text
.gitignore text
.gitconfig text
# Graphics
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.svg text
*.webp binary
# Video
*.webm binary
*.mp4 binary
# Enforce checkout with LF
*.sh text eol=lf
*.bash text eol=lf
Makefile text eol=lf
# Documentation overrides
docs/** linguist-documentation=false