-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpcs.xml.dist
29 lines (26 loc) · 1015 Bytes
/
phpcs.xml.dist
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
<?xml version="1.0"?>
<ruleset name="PWA_Generator">
<!--
p: Show progress of the run.
s: Show sniff codes in all reports.
v: Print processed files.
-->
<arg value="psv" />
<!-- Show colors -->
<arg name="colors"/>
<!-- Specify files and directories to exclude -->
<exclude-pattern>*.js</exclude-pattern>
<exclude-pattern>*.css</exclude-pattern>
<exclude-pattern>*/files/*</exclude-pattern>
<exclude-pattern>*/node_modules/*</exclude-pattern>
<exclude-pattern>*/tests/*</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
<!-- Customize rules -->
<rule ref="PSR12">
<exclude name="Squiz.Functions.MultiLineFunctionDeclaration.BraceOnSameLine" />
<exclude name="PSR2.Classes.ClassDeclaration.OpenBraceNewLine" />
<exclude name="PSR1.Methods.CamelCapsMethodName" />
</rule>
<rule ref="Generic.Functions.OpeningFunctionBraceKernighanRitchie" />
<rule ref="Generic.Arrays.DisallowLongArraySyntax"/>
</ruleset>