-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpcs.xml
More file actions
28 lines (24 loc) · 775 Bytes
/
phpcs.xml
File metadata and controls
28 lines (24 loc) · 775 Bytes
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="Soli Coding Standard">
<description>Soli Coding Standard</description>
<!-- display progress -->
<arg value="p"/>
<!-- display sniff codes -->
<arg value="s"/>
<!-- use colors in output -->
<arg name="colors"/>
<!-- file extensions -->
<arg name="extensions" value="php"/>
<!-- inherit rules from: -->
<rule ref="PSR2"/>
<rule ref="Generic.Arrays.DisallowLongArraySyntax"/>
<rule ref="PSR1">
<exclude name="PSR1.Files.SideEffects.FoundWithSymbols"/>
</rule>
<!-- ignore vendor -->
<exclude-pattern>*/vendor/*</exclude-pattern>
<exclude-pattern>*/cache/*</exclude-pattern>
<!-- Paths to check -->
<file>src</file>
<file>examples</file>
</ruleset>