-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpcs.xml
More file actions
20 lines (17 loc) · 792 Bytes
/
phpcs.xml
File metadata and controls
20 lines (17 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0"?>
<ruleset>
<autoload>vendor/autoload.php</autoload>
<file>.</file>
<!-- Show sniff names and show progress -->
<arg value="sp"/>
<!-- Exclude the vendor and bin folders, we can't be responsible for 3rd party and generated code -->
<exclude-pattern>*/vendor/*</exclude-pattern>
<exclude-pattern>bin/*</exclude-pattern>
<!-- Only validate files with the php extension -->
<arg name="extensions" value="php"/>
<rule ref="vendor/superbrave/coding-standards/Superbrave"/>
<rule ref="PSR1.Files.SideEffects.FoundWithSymbols">
<!-- At the beginning of the file is a define() call to make the code PHP 5.6 compliant -->
<exclude-pattern>Anonymize/Type/DateTimeAnonymizer.php</exclude-pattern>
</rule>
</ruleset>