forked from cortex-js/cortexjs.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
147 lines (129 loc) · 2.68 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
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
#
# Normalize text files line ending to LF in the repository
#
* text=auto
#
# Text files
#
*.css text
# Handlebars template
*.hbs text
*.htm text diff=html
*.html text diff=html
*.js text
*.json text
*.jsx text
# Liquid template
*.liquid 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
*.tsx 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
.eleventyignore 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
#
# Video
#
*.3gpp binary
*.3gp binary
*.as binary
*.asf binary
*.asx binary
*.fla binary
*.flv binary
*.m4v binary
*.mng binary
*.mov binary
*.mp4 binary
*.mpeg binary
*.mpg binary
*.ogv binary
*.swc binary
*.swf binary
*.webm binary
#
# Fonts
#
*.ttf binary
*.eot binary
*.otf binary
*.woff binary
*.woff2 binary
#
# Exclude files from exporting
# (used by the "download ZIP archive" option, for example)
#
.eleventyignore export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.gitmodules export-ignore
.prettierignore export-ignore
.package-lock.json export-ignore