-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
39 lines (29 loc) · 1.04 KB
/
phpcs.xml
File metadata and controls
39 lines (29 loc) · 1.04 KB
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
31
32
33
34
35
36
37
38
39
<?xml version="1.0" encoding="UTF-8"?>
<ruleset name="Jose Carlos Moro">
<description>Jose Carlos Moro Coding Standard</description>
<!-- Base path -->
<arg name="basepath" value="."/>
<!-- Use colors in output -->
<arg name="colors"/>
<!-- A comma separated list of file extensions to check -->
<arg name="extensions" value="php"/>
<!-- How many files should be checked simultaneously -->
<arg name="parallel" value="4"/>
<!-- How many columns wide screen reports should be printed -->
<arg name="report-width" value="auto"/>
<!-- Show progress of the run -->
<arg value="p"/>
<!-- Show sniff codes in all reports -->
<arg value="s"/>
<!-- Files to check -->
<file>src/</file>
<file>tests/</file>
<!-- Include the PSR12 standard -->
<rule ref="PSR12"/>
<rule ref="PSR2.Methods.MethodDeclaration.Underscore">
<exclude-pattern>tests/</exclude-pattern>
</rule>
<rule ref="Generic.Files.LineLength">
<severity>0</severity>
</rule>
</ruleset>