-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
99 lines (84 loc) · 1.4 KB
/
.gitattributes
File metadata and controls
99 lines (84 loc) · 1.4 KB
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
# Set default behavior to automatically normalize line endings
* text=auto
# Declare files that will always have LF line endings on checkout
*.sh text eol=lf
*.bash text eol=lf
# Declare files that will always have CRLF line endings on checkout
*.bat text eol=crlf
# Denote all files that are truly binary and should not be modified
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.svg binary
*.webp binary
*.pdf binary
*.zip binary
*.tar binary
*.gz binary
*.7z binary
*.rar binary
# Database files
*.db binary
*.sqlite binary
*.sqlite3 binary
# Archive files
*.tar binary
*.gz binary
*.bz2 binary
*.xz binary
*.zip binary
# Audio/Video files
*.mp3 binary
*.mp4 binary
*.avi binary
*.mov binary
*.wmv binary
*.flv binary
# Font files
*.woff binary
*.woff2 binary
*.eot binary
*.ttf binary
*.otf binary
# Documentation files
*.md text
*.txt text
*.json text
*.yml text
*.yaml text
# Source code files
*.js text
*.ts text
*.jsx text
*.tsx text
*.html text
*.css text
*.scss text
*.less text
*.xml text
*.sql text
# Configuration files
*.config.js text
*.config.ts text
.gitignore text
.gitattributes text
.editorconfig text
.nvmrc text
.prettierrc text
*.json text
# Lock files
package-lock.json text
yarn.lock text
pnpm-lock.yaml text
# TypeScript definition files
*.d.ts text
# Log files
*.log text
# Environment files
.env* text
# License and documentation
LICENSE text
CHANGELOG* text
README* text