-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathphpcs.xml
30 lines (28 loc) · 951 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
28
29
30
<?xml version="1.0"?>
<ruleset name="Custom Standard">
<description>Custom coding standard</description>
<!-- Use PSR-12 as a base -->
<rule ref="PSR12"/>
<!-- Exclude problematic rules -->
<rule ref="PEAR.Commenting.FileComment.MissingAuthorTag">
<severity>0</severity>
</rule>
<rule ref="PEAR.Commenting.FileComment.MissingCategoryTag">
<severity>0</severity>
</rule>
<rule ref="PEAR.Commenting.FileComment.MissingLicenseTag">
<severity>0</severity>
</rule>
<rule ref="PEAR.Commenting.FileComment.MissingLinkTag">
<severity>0</severity>
</rule>
<rule ref="PEAR.Commenting.FileComment.MissingPackageTag">
<severity>0</severity>
</rule>
<rule ref="Generic.Commenting.DocComment.Empty">
<severity>0</severity>
</rule>
<rule ref="PEAR.Files.IncludingFile.BracketsNotRequired">
<severity>0</severity>
</rule>
</ruleset>