-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy path.gitattributes
More file actions
40 lines (31 loc) · 1.1 KB
/
.gitattributes
File metadata and controls
40 lines (31 loc) · 1.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
# Automatically normalize line endings.
* text=auto
# Files and directories to exclude from the generated archive (export-ignore).
# These will be omitted from GitHub/Packagist ZIP archives to keep packages small.
/src export-ignore
# Tests and test fixtures
/tests/ export-ignore
# PHP unit / static analysis configs.
/phpcs.xml.dist export-ignore
/phpstan.neon.dist export-ignore
/phpunit.xml.dist export-ignore
# Continuous Integration configs.
/.github export-ignore
/.wordpress-org export-ignore
# Node and build artifacts.
package.json export-ignore
package-lock.json export-ignore
/composer.lock export-ignore
/tsconfig.json export-ignore
/webpack.config.js export-ignore
# Don't include the dotfiles for distribution.
/.* export-ignore
# Mark docs as documentation for GitHub Linguist.
/docs/ linguist-documentation export-ignore
/CHANGELOG.md export-ignore
/CONTRIBUTING.md linguist-documentation export-ignore
/CREDITS.md linguist-documentation export-ignore
/SECURITY.md linguist-documentation export-ignore
# Keep license and readme files.
/LICENSE.md linguist-documentation
/README.md linguist-documentation