forked from ALPHACamp/twitter-fullstack-2020
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitattributes
53 lines (46 loc) · 1.14 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
* text=auto
# Source code
*.css text diff=css
*.html text diff=html
*.js text
*.json text
# Documentation
*.markdown text diff=markdown
*.md text diff=markdown
*.txt text
# Templates
*.handlebars text
*.hbs text
# Configs
*.cnf text
*.conf text
*.config text
.editorconfig text
.env text
.env.* text
.gitattributes text
.gitconfig text
*.lock text -diff
package.json text eol=lf
package-lock.json text -diff
yarn.lock text -diff
*.yaml text
*.yml text
browserslist text
# Heroku
Procfile text
# Graphics
*.gif binary
*.ico binary
*.jpg binary
*.jpeg binary
*.pdf binary
*.png binary
# SVG treated as an asset (binary) by default.
*.svg text
# If you want to treat it as binary,
# use the following line instead.
# *.svg binary
*.webp binary
# Ignore files (like .npmignore or .gitignore)
*.*ignore text