-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitattributes
79 lines (67 loc) · 1.93 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
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
# Set default behavior to automatically normalize line endings
* text=auto eol=lf
# Source code
*.cjs text eol=lf
*.css text eol=lf diff=css
*.html text eol=lf diff=html
*.js text eol=lf
*.jsx text eol=lf
*.mjs text eol=lf
*.ts text eol=lf
*.tsx text eol=lf
# Go files
*.go text eol=lf diff=golang
*.mod text eol=lf
*.sum text eol=lf
# Documentation and configs
*.md text eol=lf diff=markdown
*.yaml text eol=lf
*.yml text eol=lf
*.json text eol=lf
*.lock text eol=lf -diff
.editorconfig text eol=lf
.eslintignore text eol=lf
.gitattributes text eol=lf
.gitignore text eol=lf
.npmrc text eol=lf
.prettierrc text eol=lf
Dockerfile text eol=lf
.dockerignore text eol=lf
LICENSE text eol=lf
# Package management
pnpm-lock.yaml text eol=lf -diff
pnpm-workspace.yaml text eol=lf
.npmrc text eol=lf
.pnpmfile.cjs text eol=lf
.pnpm-debug.log text eol=lf
.pnpm/* binary
# Workspace specific
**/pnpm-lock.yaml text eol=lf -diff
**/package.json text eol=lf
**/.npmrc text eol=lf
# Node specific
node_modules/* binary
.cache/* binary
.pnpm-store/* binary
# Scripts and hooks
*.sh text eol=lf
.husky/* text eol=lf
# Data files
*.csv text eol=lf
*.po text eol=lf
*.pot text eol=lf
*.patch text eol=lf -diff
*.xml text eol=lf
# Environment files
.development text eol=lf
.production text eol=lf
.cursorignore text eol=lf
# Playwright
*.playwright text eol=lf
# Binary files (should not be modified)
*.ico binary
*.png binary
*.xlsx binary
*.snap binary
# SVG can be treated as text
*.svg text eol=lf