Skip to content

Commit 085ac46

Browse files
authored
Improve .gitignore (#71)
1 parent 4e5d61a commit 085ac46

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@
22
# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html
33

44
# Ignore all test and documentation with "export-ignore".
5+
/.github export-ignore
56
/.gitattributes export-ignore
67
/.gitignore export-ignore
78
/.travis.yml export-ignore
89
/phpunit.xml.dist export-ignore
910
/.scrutinizer.yml export-ignore
11+
/.styleci.yml export-ignore
12+
/.editorconfig export-ignore
1013
/tests export-ignore

.gitignore

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,29 @@
1+
# phpstorm project files
2+
.idea
3+
4+
# netbeans project files
5+
nbproject
6+
7+
# zend studio for eclipse project files
8+
.buildpath
9+
.project
10+
.settings
11+
12+
# windows thumbnail cache
13+
Thumbs.db
14+
15+
# Mac DS_Store Files
16+
.DS_Store
17+
18+
# composer
119
/vendor
2-
build
320
composer.phar
421
composer.lock
22+
23+
# phpunit
24+
phpunit.phar
25+
/phpunit.xml
26+
.phpunit.result.cache
27+
28+
# build
29+
build

0 commit comments

Comments
 (0)