-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
34 additions
and
29 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
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 |
---|---|---|
|
@@ -8,4 +8,4 @@ | |
/phpunit.xml | ||
|
||
# IntelliJ IDEA project files | ||
/.idea/ | ||
.idea/ |
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,26 +1,26 @@ | ||
<?xml version="1.0"?> | ||
<ruleset> | ||
<!-- show progress of the run --> | ||
<arg value="p"/> | ||
<!-- show sniff codes in all reports --> | ||
<arg value="s"/> | ||
<!-- show progress of the run --> | ||
<arg value="p"/> | ||
<!-- show sniff codes in all reports --> | ||
<arg value="s"/> | ||
|
||
<!-- use colors in output --> | ||
<arg name="colors"/> | ||
<!-- use colors in output --> | ||
<arg name="colors"/> | ||
|
||
<!-- inherit rules from: --> | ||
<rule ref="PSR2"/> | ||
<!-- inherit rules from: --> | ||
<rule ref="PSR2"/> | ||
|
||
<!-- specific and just exclude rules in some file --> | ||
<!-- specific and just exclude rules in some file --> | ||
|
||
<!-- specific and just exclude rules in testing files --> | ||
<!-- specific and just exclude rules in testing files --> | ||
|
||
<!-- Paths and file to check --> | ||
<file>src</file> | ||
<file>tests</file> | ||
<!-- Paths and file to check --> | ||
<file>src</file> | ||
<file>tests</file> | ||
|
||
<!-- exclude file, e.g. Cache --> | ||
<rule ref="Generic.Files.LineLength.TooLong"> | ||
<exclude-pattern>tests</exclude-pattern> | ||
</rule> | ||
<!-- exclude file, e.g. Cache --> | ||
<rule ref="Generic.Files.LineLength.TooLong"> | ||
<exclude-pattern>tests</exclude-pattern> | ||
</rule> | ||
</ruleset> |
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