-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
27 lines (23 loc) · 782 Bytes
/
.gitattributes
File metadata and controls
27 lines (23 loc) · 782 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
# Set default character encoding
* text=auto encoding=utf-8
# Ensure text files use LF line endings
*.js text eol=lf
*.jsx text eol=lf
*.ts text eol=lf
*.tsx text eol=lf
*.json text eol=lf
*.md text eol=lf
*.css text eol=lf
*.scss text eol=lf
*.html text eol=lf
# Set language for specific file types
*.ts linguist-language=TypeScript
*.tsx linguist-language=TypeScript
*.js linguist-language=JavaScript
*.jsx linguist-language=JavaScript
# Explicitly mark files as English content
e2e/**/*.ts linguist-language=TypeScript linguist-documentation=false
src/**/*.ts linguist-language=TypeScript linguist-documentation=false
src/**/*.tsx linguist-language=TypeScript linguist-documentation=false
# Exclude files from Git's language statistics
*.generated.* linguist-generated=true