Skip to content

Commit dd31472

Browse files
author
Hunter2718
committed
feat: Add .gitattributes
1 parent 1b17b33 commit dd31472

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

.gitattributes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
* text=auto eol=lf
2+
3+
# Rust code treated as UTF-8 source
4+
*.rs linguist-language=Rust

.gitignore

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,28 @@
1-
/target
1+
# Rust build artifacts
2+
kitten/target/
3+
4+
# Executables & binaries
5+
*.exe
6+
*.dll
7+
*.so
8+
*.dylib
9+
*.rlib
10+
11+
# Logs & temporary files
12+
*.log
13+
14+
# IDE / Editor folders
15+
.vscode/
16+
.idea/
17+
*.swp
18+
*.swo
19+
*.bak
20+
21+
# macOS junk
22+
.DS_Store
23+
24+
# Windows junk
25+
Thumbs.db
26+
27+
# Backup files
28+
*~

0 commit comments

Comments
 (0)