-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.phpcs.xml.dist
More file actions
23 lines (19 loc) · 868 Bytes
/
.phpcs.xml.dist
File metadata and controls
23 lines (19 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0"?>
<ruleset>
<!-- Files or directories to check -->
<file>./sync-mastodon.php</file>
<file>./src</file>
<!-- Path to strip from the front of file paths inside reports (displays shorter paths) -->
<arg name="basepath" value="." />
<!-- Set a minimum PHP version for PHPCompatibility -->
<config name="testVersion" value="7.2-" />
<!-- Use HM Coding Standards -->
<rule ref="vendor/humanmade/coding-standards">
<exclude name="PEAR.Commenting.ClassComment.MissingCategoryTag" />
<exclude name="PEAR.Commenting.ClassComment.MissingPackageTag" />
<exclude name="PEAR.Commenting.ClassComment.MissingAuthorTag" />
<exclude name="PEAR.Commenting.ClassComment.MissingLicenseTag" />
<exclude name="PEAR.Commenting.ClassComment.MissingLinkTag" />
<exclude name="Squiz.Commenting.InlineComment.InvalidEndChar" />
</rule>
</ruleset>