-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make export ignore statements absolute
- Loading branch information
1 parent
3a508eb
commit 6a75374
Showing
1 changed file
with
14 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
* text=auto | ||
|
||
phpstan.neon export-ignore | ||
bin export-ignore | ||
.github export-ignore | ||
.php_cs.dist export-ignore | ||
.scrutinizer.yml export-ignore | ||
src/Generation export-ignore | ||
test_files export-ignore | ||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
.travis.yml export-ignore | ||
**/*Test.php export-ignore | ||
phpunit.php export-ignore | ||
phpunit.xml.dist export-ignore | ||
readme.md export-ignore | ||
/phpstan.neon export-ignore | ||
/bin export-ignore | ||
/.github export-ignore | ||
/.php_cs.dist export-ignore | ||
/.scrutinizer.yml export-ignore | ||
/src/Generation export-ignore | ||
/test_files export-ignore | ||
/.gitattributes export-ignore | ||
/.gitignore export-ignore | ||
/.travis.yml export-ignore | ||
/**/*Test.php export-ignore | ||
/phpunit.php export-ignore | ||
/phpunit.xml.dist export-ignore | ||
/readme.md export-ignore |