-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
18 lines (18 loc) · 804 Bytes
/
phpcs.xml
File metadata and controls
18 lines (18 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<ruleset>
<rule ref="PSR12">
<exclude name="Squiz" />
<exclude name="Generic.Files.LineLength" />
<exclude name="Squiz.WhiteSpace.ControlStructureSpacing.SpacingAfterOpen" />
<exclude name="Squiz.WhiteSpace.ControlStructureSpacing.SpacingBeforeClose" />
<exclude name="PSR2.Methods.MethodDeclaration.Underscore" />
<!-- To keep compatibility with PHP < 7.1, this rule can't apply -->
<exclude name="PSR12.Properties.ConstantVisibility.NotFound" />
</rule>
<rule ref="Generic.Files.LineLength">
<properties>
<property name="lineLimit" value="120" />
<property name="absoluteLineLimit" value="128" />
<property name="ignoreComments" value="true" />
</properties>
</rule>
</ruleset>