-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpcs.xml
executable file
·30 lines (26 loc) · 1.04 KB
/
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
29
30
<?xml version="1.0" encoding="UTF-8"?>
<ruleset name="ceek">
<description>
The coding standard.
Author Gula Andriy
Created with the PHP Coding Standard Generator. http://edorian.github.com/php-coding-standard-generator/#phpcs
</description>
<exclude-pattern>*/build/*</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
<exclude-pattern>./var/*</exclude-pattern>
<exclude-pattern>./public/*</exclude-pattern>
<exclude-pattern>./config/*</exclude-pattern>
<exclude-pattern>./bin/*</exclude-pattern>
<exclude-pattern>./src/Kernel.php</exclude-pattern>
<exclude-pattern>./src/Migrations/*</exclude-pattern>
<exclude-pattern>*min.js</exclude-pattern>
<exclude-pattern>*min.css</exclude-pattern>
<exclude-pattern>./tests/*</exclude-pattern>
<arg name="extensions" value="php"/>
<arg value="spn"/>
<arg name="colors"/>
<arg name="cache"/>
<arg name="parallel" value="30"/>
<arg name="report" value="code"/>
<rule ref="SelectoCodingStandard"/>
</ruleset>