-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpcs.xml
More file actions
20 lines (16 loc) · 795 Bytes
/
phpcs.xml
File metadata and controls
20 lines (16 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0"?>
<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="WPD Plugin"
xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/squizlabs/PHP_CodeSniffer/master/phpcs.xsd">
<description>Coding standards for developed projects by SMFB+Dinamo.</description>
<!-- Files or directories to check. -->
<file>./src</file>
<file>./wp-start-up.php</file>
<!-- Path to strip from the front of file paths inside reports (displays shorter paths). -->
<arg name="basepath" value="." />
<arg name="colors" />
<arg name="parallel" value="8" />
<!-- Set a minimum PHP version for PHPCompatibility. -->
<config name="testVersion" value="8.0-" />
<!-- Use WPD Coding Standards. -->
<rule ref="WPD" />
</ruleset>