-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
49 lines (39 loc) · 985 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
46
47
48
49
* text=auto eol=lf
#
# The above will handle all files NOT found below
# https://help.github.com/articles/dealing-with-line-endings/
# https://github.com/Danimoth/gitattributes
# Source code
*.cjs text
*.js text
*.json text
*.ts text
# Dist
dist/* text -diff
# Documentation
*.md text
# Configs
.editorconfig text
.env text
.gitattributes text
.gitconfig text
*.lock text -diff
package-lock.json text -diff
*.yaml text
*.yml text
# RC files (like .babelrc or .eslintrc)
*.*rc text
# Ignore files (like .npmignore or .gitignore)
*.*ignore text
# Binaries
oxipng* binary
*.exe binary
# Design files
*.xd binary
*.sketch binary
# Images
*.png binary
*.jpeg binary
*.jpg binary
*.bmp binary
*.ico binary