-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
102 lines (83 loc) · 2.56 KB
/
Copy path.gitattributes
File metadata and controls
102 lines (83 loc) · 2.56 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
100
101
102
# =========================================================
# Normalize line endings automatically
# Set the default behavior to automatically normalize line endings to LF on commit.
# =========================================================
* text=auto eol=lf
# =========================================================
# Export ignore
# Excluded from git archive / GitHub source archives
# (e.g., when downloading a release source code zip or creating an archive with `git archive`).
# =========================================================
.github/ export-ignore
.vscode/ export-ignore
.idea/ export-ignore
tests/ export-ignore
coverage/ export-ignore
benchmarks/ export-ignore
.prettier* export-ignore
.eslint* export-ignore
.editorconfig export-ignore
Changelog.md export-ignore
.gitignore export-ignore
.gitattributes export-ignore
.markdownlint.yaml export-ignore
.pre-commit-config.yaml export-ignore
# =========================================================
# Source files
# =========================================================
*.js text
*.mjs text
*.cjs text
*.ts text
*.mts text
*.cts text
*.jsx text
*.tsx text
# =========================================================
# Config / Docs
# =========================================================
*.json text
*.jsonc text
*.yml text
*.yaml text
*.toml text
*.md text
*.txt text
# =========================================================
# Styles / Web
# =========================================================
*.html text
*.css text
*.scss text
*.sass text
*.svg text
# =========================================================
# Binary files
# Treat common binary assets as binary to prevent CRLF conversion
# =========================================================
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.webp binary
*.ico binary
*.pdf binary
*.zip binary
*.gz binary
*.7z binary
*.woff binary
*.woff2 binary
# =========================================================
# Windows/Linux scripts
# =========================================================
*.sh text eol=lf
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
# =========================================================
# Lockfiles
# =========================================================
package-lock.json text
pnpm-lock.yaml text
yarn.lock text
bun.lockb binary