-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
16 lines (16 loc) · 781 Bytes
/
phpcs.xml
File metadata and controls
16 lines (16 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0"?>
<ruleset name="LabRuleset">
<description>ArtLung Lab Coding Standard</description>
<rule ref="PEAR">
<!-- ignore long lines -->
<exclude name="Generic.Files.LineLength.TooLong"/>
<exclude name="PEAR.Commenting.FileComment.Missing"/>
<exclude name="PEAR.Commenting.FileComment.MissingCategory"/>
<exclude name="PEAR.Commenting.FileComment.MissingPackage"/>
<exclude name="PEAR.Commenting.FileComment.MissingAuthor"/>
<exclude name="PEAR.Commenting.FileComment.MissingLicense"/>
<exclude name="PEAR.Commenting.FileComment.MissingLink"/>
<exclude-pattern>vendor/*</exclude-pattern>
<exclude name="PEAR.Commenting.FunctionComment.MissingParamComment"/>
</rule>
</ruleset>