-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpcs.xml.dist
More file actions
25 lines (20 loc) · 853 Bytes
/
Copy pathphpcs.xml.dist
File metadata and controls
25 lines (20 loc) · 853 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
<?xml version="1.0"?>
<ruleset name="FrameworkLibrary">
<description>PSR-12 and Framework custom coding standards for src/</description>
<config name="installed_paths" value="phpcs"/>
<arg name="basepath" value="."/>
<arg value="ps"/>
<arg name="colors"/>
<config name="testVersion" value="7.4-"/>
<file>src</file>
<exclude-pattern>src/helpers.php</exclude-pattern>
<exclude-pattern>src/Polyfill/</exclude-pattern>
<exclude-pattern>src/Console/stubs/</exclude-pattern>
<rule ref="PSR12">
<exclude name="PSR1.Files.SideEffects.FoundWithSymbols"/>
<exclude name="PSR1.Methods.CamelCapsMethodName"/>
<exclude name="PSR12.Files.FileHeader.SpacingAfterBlock"/>
<exclude name="Squiz.WhiteSpace.SuperfluousWhitespace.EndLine"/>
</rule>
<rule ref="Framework"/>
</ruleset>