forked from Barnetik/tbai-php-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
20 lines (15 loc) · 665 Bytes
/
phpcs.xml
File metadata and controls
20 lines (15 loc) · 665 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="PHP_CodeSniffer" xsi:noNamespaceSchemaLocation="phpcs.xsd">
<description>Coding standard for the TBai library</description>
<file>.</file>
<exclude-pattern>vendor/**/*</exclude-pattern>
<exclude-pattern>tests/**/*</exclude-pattern>
<arg name="extensions" value="php" />
<arg name="basepath" value="." />
<arg name="colors" />
<arg name="parallel" value="75" />
<arg value="np" />
<!-- Include the whole PSR12 standard -->
<rule ref="PSR12"></rule>
<!-- <rule ref="vendor/suin/phpcs-psr4-sniff/src/Suin" /> -->
</ruleset>