forked from milsdev/wordpress-plugin-sarcofag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpcs.xml
27 lines (22 loc) · 753 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
<?xml version="1.0"?>
<ruleset name="Sarcofag coding standard">
<description>Sarcofag coding standard</description>
<!-- display progress -->
<arg value="p"/>
<arg name="colors"/>
<!-- inherit rules from: -->
<rule ref="PSR2"/>
<rule ref="Generic.CodeAnalysis.UnusedFunctionParameter"/>
<rule ref="Generic.Arrays.DisallowLongArraySyntax"/>
<rule ref="Squiz.Commenting.FunctionComment"/>
<rule ref="Squiz.WhiteSpace.SuperfluousWhitespace">
<properties>
<property name="ignoreBlankLines" value="false"/>
</properties>
</rule>
<ini name="memory_limit" value="64M"/>
<!-- Paths to check -->
<file>src</file>
<file>test</file>
<file>index.php</file>
</ruleset>