-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpcs.xml
26 lines (21 loc) · 1.02 KB
/
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
<?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-uptime-page.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="7.4-" />
<!--
Prevent errors caused by WordPress Coding Standards not supporting PHP 8.0+.
See https://github.com/WordPress/WordPress-Coding-Standards/issues/2035
-->
<ini name="error_reporting" value="E_ALL & ~E_DEPRECATED" />
<!-- Use WPD Coding Standards. -->
<rule ref="WPD" />
</ruleset>