-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
40 lines (32 loc) · 1 KB
/
Copy path.gitattributes
File metadata and controls
40 lines (32 loc) · 1 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
35
36
37
38
39
40
# .gitattributes for luberius/tailwindcss
# Exclude development and testing files from Composer dist packages
/tests/ export-ignore
/docs/ export-ignore
/bin/ export-ignore
/vendor/ export-ignore
/.claude/ export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
.phpunit.result.cache export-ignore
phpunit.xml export-ignore
phpcbf.phar export-ignore
phpcs.phar export-ignore
.DS_Store export-ignore
.editorconfig export-ignore
phpcs.xml export-ignore
# Exclude CI/CD configuration if added in future
/.github/ export-ignore
.travis.yml export-ignore
.circleci/ export-ignore
# Normalize line endings for consistent behavior across platforms
* text=auto
# PHP files should have LF line endings
*.php text eol=lf
# Markdown files
*.md text eol=lf
# JSON files
*.json text eol=lf
# XML files
*.xml text eol=lf
# Shell scripts
*.sh text eol=lf