forked from Okipa/laravel-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpcs.xml
28 lines (28 loc) · 991 Bytes
/
phpcs.xml
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
<?xml version="1.0"?>
<ruleset name="PSR12">
<description>PSR-12 code style validation</description>
<!-- Included directories -->
<file>config</file>
<file>src</file>
<file>tests</file>
<!-- Excluded patterns -->
<exclude-pattern>*/*.js</exclude-pattern>
<exclude-pattern>*/*.css</exclude-pattern>
<exclude-pattern>*/*.xml</exclude-pattern>
<exclude-pattern>*/*.blade.php</exclude-pattern>
<!-- Configuration -->
<arg name="colors"/>
<arg value="p"/>
<!-- Rules configurations -->
<rule ref="PSR1.Classes.ClassDeclaration.MissingNamespace">
<exclude-pattern>./tests/*</exclude-pattern>
</rule>
<rule ref="PSR1.Methods.CamelCapsMethodName.NotCamelCaps">
<exclude-pattern>./tests/*</exclude-pattern>
</rule>
<rule ref="Generic.Files.LineLength">
<exclude-pattern>./config/*</exclude-pattern>
<exclude-pattern>./tests/*</exclude-pattern>
</rule>
<rule ref="PSR12"/>
</ruleset>