-
-
Notifications
You must be signed in to change notification settings - Fork 280
/
.gitattributes
107 lines (93 loc) · 1.93 KB
/
.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
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
#
# Normalize text files line ending to LF in the repository
#
* text=auto
#
# Text files
#
*.css text
*.htm text diff=html
*.html text diff=html
*.js text
*.json text
*.map text -diff
# Markdown
*.md text
*.sass text diff=css
*.scss text diff=css
# shell script, always LF
*.sh text eol=lf
*.svg text
*.ts text
*.yaml text
*.yml text
#
# Text files without extension
#
AUTHORS* text
CHANGELOG* text
CHANGES text
CONTRIBUTING* text
COPYING text
copyright text
*COPYRIGHT* text
INSTALL* text
license text
LICENSE* text
NEWS text
readme text
*README* text
TODO text
#
# Configuration files
#
*.bowerrc text
*.cnf text
*.conf text
*.config text
.babelrc text
.browserslistrc text
.editorconfig text
.env text
.gitattributes text
.gitconfig text
.htaccess text
*.lock text -diff
package-lock.json text -diff
*.npmignore text
*.yaml text
*.yml text
browserslist text
Makefile text
makefile text
#
# Configuration files without extension
#
.csslintrc text
.editorconfig text
.eslintrc text
.gitignore text
.gitmodules text
.htmlhintrc text
.prettierignore text
.jscsrc text
.jshintrc text
.jshintignore text
.stylelintrc text
#
# Graphics
#
*.gif binary
*.ico binary
*.jpg binary
*.jpeg binary
*.png binary
#
# Exclude files from exporting
# (used by the "download ZIP archive" option, for example)
#
.gitattributes export-ignore
.gitignore export-ignore
.gitmodules export-ignore
.prettierignore export-ignore
.package-lock.json export-ignore