-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.gitattributes
More file actions
29 lines (23 loc) · 827 Bytes
/
Copy path.gitattributes
File metadata and controls
29 lines (23 loc) · 827 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
28
29
# Auto-detect text files and always use LF everywhere (Linux, macOS and
# Windows). CRLF is never checked out, so no autocrlf warnings on Windows.
* text=auto eol=lf
# Rust source code
*.rs linguist-language=Rust text
# Configuration files
*.toml linguist-language=TOML text
*.jsonc linguist-language=JSON text
*.json linguist-language=JSON text
Cargo.lock linguist-language=TOML text
# Scripts
# Ensure shell scripts always have LF line endings
*.sh linguist-language=Shell text eol=lf
*.ps1 linguist-language=PowerShell text
# Documentation
*.md linguist-language=Markdown text
LICENSE linguist-language=Text text
# Assets and Logos
*.txt linguist-language=Text text
*.svg linguist-language=SVG text
# Git configuration
.gitignore linguist-language=Ignore-List text
.gitattributes linguist-language=Git-Attributes text