-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
153 lines (127 loc) · 3.77 KB
/
.gitattributes
File metadata and controls
153 lines (127 loc) · 3.77 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
# =====================================
# Git Attributes
# =====================================
# Text files - ensure consistent line endings
*.md text eol=lf
*.txt text eol=lf
*.json text eol=lf
*.js text eol=lf
*.jsx text eol=lf
*.ts text eol=lf
*.tsx text eol=lf
*.css text eol=lf
*.scss text eol=lf
*.sass text eol=lf
*.html text eol=lf
*.xml text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.toml text eol=lf
*.ini text eol=lf
*.env text eol=lf
*.gitignore text eol=lf
*.gitattributes text eol=lf
*.editorconfig text eol=lf
*.prettierrc text eol=lf
*.eslintrc text eol=lf
# =====================================
# Package Manager Files
# =====================================
# Yarn
/.yarn/** linguist-vendored
/.yarn/releases/* binary
/.yarn/plugins/**/* binary
/.yarn/cache/* binary linguist-generated
/.pnp.* binary linguist-generated
yarn.lock linguist-generated
.yarnrc.yml linguist-language=YAML
# npm
package-lock.json linguist-generated
npm-shrinkwrap.json linguist-generated
# pnpm
pnpm-lock.yaml linguist-generated
.pnpm-store/** binary linguist-vendored
# Bun
bun.lockb binary linguist-generated
bun.lock linguist-generated
# =====================================
# Build Tools & Cache
# =====================================
# Turbo
/.turbo/* binary linguist-generated
# Next.js
/.next/* binary linguist-generated
/out/* binary linguist-generated
# Vite
/dist/* binary linguist-generated
# General build outputs
/build/* binary linguist-generated
/coverage/* binary linguist-generated
*.tsbuildinfo binary linguist-generated
# Cache directories
/.cache/* binary linguist-generated
/node_modules/** binary linguist-vendored
# =====================================
# Development Files
# =====================================
# Environment files
.env* text eol=lf
# Config files
*.config.js text eol=lf
*.config.ts text eol=lf
*.config.mjs text eol=lf
tsconfig*.json text eol=lf
turbo.json text eol=lf
# =====================================
# Binary Files
# =====================================
# Images
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.svg text eol=lf
*.webp binary
*.avif binary
# Fonts
*.woff binary
*.woff2 binary
*.ttf binary
*.eot binary
*.otf binary
# Media
*.mp4 binary
*.webm binary
*.mp3 binary
*.wav binary
# Archives
*.zip binary
*.tar binary
*.gz binary
*.tgz binary
*.7z binary
# Executables
*.exe binary
*.dll binary
*.so binary
*.dylib binary
# Certificates & Keys
*.pem binary
*.key binary
*.p12 binary
*.p8 binary
*.jks binary
*.mobileprovision binary
# =====================================
# Mobile/Native Files
# =====================================
# iOS
*.pbxproj text eol=lf merge=union
*.xcworkspacedata text eol=lf
*.xcscheme text eol=lf
# Android
*.gradle text eol=lf
*.properties text eol=lf
# React Native
*.bundle binary