-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
34 lines (31 loc) · 1.01 KB
/
.gitattributes
File metadata and controls
34 lines (31 loc) · 1.01 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
# Ensure consistent line endings (LF) across all text files
* text=auto eol=lf
# Force LF in specific file types (for stricter control)
*.md text eol=lf
*.json text eol=lf
*.xml text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.neon text eol=lf
*.php text eol=lf
# Exclude from GitHub language stats
/.github/** linguist-documentation
/docs/** linguist-documentation
/bin/** linguist-vendored
/docker/** linguist-vendored
# Exclude from GitHub-generated ZIP archives
/tests export-ignore
/docker export-ignore
/bin export-ignore
/docs export-ignore
/examples export-ignore
/.git* export-ignore
/.husky export-ignore
/package.json export-ignore
/package-lock.json export-ignore
/.release-it.json export-ignore
/.editorconfig export-ignore
/psalm.xml.dist export-ignore
/phpcs.xml.dist export-ignore
/phpstan.neon.dist export-ignore
/phpunit.xml.dist export-ignore