-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpcs.xml
More file actions
21 lines (17 loc) · 838 Bytes
/
phpcs.xml
File metadata and controls
21 lines (17 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0"?>
<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="Innocode Plugin"
xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/squizlabs/PHP_CodeSniffer/master/phpcs.xsd">
<description>Coding standards for developed projects by Innocode.</description>
<!-- Files or directories to check. -->
<file>./public/views</file>
<file>./src</file>
<file>./inncognito.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.2-" />
<!-- Use Innocode Coding Standards. -->
<rule ref="Innocode" />
</ruleset>