-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
98 lines (78 loc) · 1.41 KB
/
.gitattributes
File metadata and controls
98 lines (78 loc) · 1.41 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
# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto eol=lf
# PowerShell files should use CRLF on Windows
*.ps1 text eol=crlf
*.psm1 text eol=crlf
*.psd1 text eol=crlf
# Markdown files
*.md text eol=lf
# JSON files
*.json text eol=lf
# JavaScript files
*.js text eol=lf
*.mjs text eol=lf
*.cjs text eol=lf
*.jsx text eol=lf
# TypeScript files
*.ts text eol=lf
*.tsx text eol=lf
# CSS files
*.css text eol=lf
# HTML files
*.html text eol=lf
*.pode text eol=lf
# Configuration/Data files
*.config text eol=lf
*.conf text eol=lf
*.ini text eol=lf
*.json text eol=lf
# Text files
*.txt text eol=lf
*.log text eol=lf
*.md text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
# SQL files
*.sql text eol=lf
# XML files
*.xml text eol=lf
# YAML files
*.yml text eol=lf
*.yaml text eol=lf
# Shell scripts (if any)
*.sh text eol=lf
# Batch files
*.bat text eol=lf
*.cmd text eol=lf
# Docker
*.dockerfile text eol=lf
Dockerfile text eol=lf
# Binary files (explicitly marked)
*.exe binary
*.dll binary
*.zip binary
*.7z binary
*.tar binary
*.gz binary
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.svg binary
*.woff binary
*.woff2 binary
*.ttf binary
*.eot binary
*.lockb binary
# Font files
*.otf binary
# Archive files
*.rar binary
*.zip binary
# Ignore files
.gitignore text eol=lf
.gitattributes text eol=lf
# Package files
package.json text eol=lf
package-lock.json text eol=lf