-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
50 lines (46 loc) · 1.06 KB
/
.gitattributes
File metadata and controls
50 lines (46 loc) · 1.06 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
41
42
43
44
45
46
47
48
49
50
# Auto detect text files and perform LF normalization
* text=auto eol=lf
# Explicitly declare text files you want to always be normalized and converted
# to native line endings on checkout.
*.php text
*.css text
*.js text
*.json text
*.xml text
*.md text
*.txt text
*.yml text
*.yaml text
*.dist text
# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.svg binary
*.ttf binary
*.woff binary
*.woff2 binary
*.eot binary
# Ignore some IDE files
.idea/ export-ignore
.vscode/ export-ignore
*.sublime-* export-ignore
# Ignore development files
/.github/ export-ignore
/tests/ export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.phpunit.* export-ignore
/phpunit.xml.dist export-ignore
/phpcs.xml.dist export-ignore
/phpstan.neon.dist export-ignore
/.php-cs-fixer.dist.php export-ignore
/psalm.xml export-ignore
/mkdocs.yml export-ignore
/.phpdoc/ export-ignore
/.travis.yml export-ignore
/phpstan.neon export-ignore
/phpstan-baseline.neon export-ignore
/.php-cs-fixer.php export-ignore