-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy path.gitattributes
More file actions
56 lines (50 loc) · 723 Bytes
/
.gitattributes
File metadata and controls
56 lines (50 loc) · 723 Bytes
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
# Auto-detect text files and normalize line endings
* text=auto
# Source code
*.js text
*.ts text
*.jsx text
*.tsx text
*.css text
*.scss text
*.html text
*.json text
*.yml text
*.yaml text
*.xml text
*.vue text
*.svelte text
# Scripts
*.sh text eol=lf
*.bash text eol=lf
*.py text
*.rb text
# Config
*.env text
*.env.example text
.editorconfig text
.gitignore text
.gitattributes text
*.md text
*.txt text
# Binaries - treat as binary
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.svg binary
*.webp binary
*.mp4 binary
*.mov binary
*.wav binary
*.mp3 binary
# Archives
*.zip binary
*.tar.gz binary
*.tgz binary
*.gz binary
# Lock files
package-lock.json text
yarn.lock text
pnpm-lock.yaml text