-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
68 lines (53 loc) · 1.3 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
# Core Configuration
* text=auto
# Development Files
## Frontend Stack
*.{js,jsx,ts,tsx,html,css,scss,sass,less,json,md,yml,yaml,sh,xml,txt,svg,vue} text eol=lf
## Build Configuration
*.config.js text eol=lf
tailwind.config.js text eol=lf
postcss.config.js text eol=lf
## Backend Stack
# Python
*.{py,pyw,ipynb,pyi} text eol=lf
requirements.txt text eol=lf
Pipfile text eol=lf
*.{pkl,h5} binary
# Rust
*.rs text eol=lf
*.toml text eol=lf
Cargo.toml text eol=lf
# PHP/WordPress
*.{php,php4,php5,phtml,inc,blade.php,sql} text eol=lf
wp-config.php text eol=lf
.htaccess text eol=lf
# Binary Assets
## Media
*.{png,jpg,jpeg,gif,ico} binary
*.{mp3,mp4,avi,mov,mkv} binary
## Fonts
*.{woff,woff2,ttf,eot} binary
## Archives
*.{zip,gz,tar,tgz,bz2,xz} binary
## Database
*.{sqlite,db} binary
# Version Control
## Merge Strategies
*.{json,lock,toml,yaml,yml} merge=union
## Language-specific Diffs
*.{ts,tsx} diff=typescript
*.{js,jsx} diff=javascript
*.php diff=php
*.py diff=python
*.rs diff=rust
## Diff Exclusions
*.{min.js,min.css,bundle.js,bundle.css} -diff
dist/** -diff
build/** -diff
# Documentation
*.md linguist-language=Markdown merge=union
*.rst linguist-language=reStructuredText
# Security
*.{crx,pem,pub} binary
# Package Management
*{package-lock.json,yarn.lock,Cargo.lock,composer.lock,poetry.lock} binary