-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
34 lines (27 loc) · 1.06 KB
/
.gitattributes
File metadata and controls
34 lines (27 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
# Path-based git attributes
# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html
# Ignore all test and documentation with "export-ignore".
# Editor related files
/.editorconfig export-ignore
# Git related files and directories
/.gitattributes export-ignore
/.gitignore export-ignore
/.github export-ignore
# Quality assurance files
/.scrutinizer.yml export-ignore
/.styleci.yml export-ignore
/.travis.yml export-ignore
/.typhp.yml export-ignore
/phpcs.xml export-ignore
# Markdown files
/PULL_REQUEST_TEMPLATE.md export-ignore
/ISSUE_TEMPLATE.md export-ignore
/README.md export-ignore
/LICENSE.md export-ignore
/CHANGELOG.md export-ignore
# Testing files and directories
/tests export-ignore
/phpunit.xml.dist export-ignore
# Other files and directories
/examples export-ignore
/guides export-ignore