-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.phpcs.xml.dist
More file actions
25 lines (19 loc) · 781 Bytes
/
.phpcs.xml.dist
File metadata and controls
25 lines (19 loc) · 781 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<ruleset>
<!-- https://github.com/squizlabs/PHP_CodeSniffer/wiki/Annotated-Ruleset -->
<!-- https://github.com/squizlabs/PHP_CodeSniffer/wiki/Advanced-Usage -->
<arg name="extensions" value="php"/>
<arg name="tab-width" value="4"/>
<arg name="basepath" value="."/>
<arg name="parallel" value="80"/>
<arg name="report" value="full"/>
<arg name="cache" value=".phpcs.cache"/>
<arg value="s"/>
<file>configs</file>
<config name="ignore_warnings_on_exit" value="1"/>
<config name="ParanoiaMode" value="1"/>
<!-- PHPCompatibility config -->
<config name="testVersion" value="8.1-"/>
<rule ref="Fox91CodingStandard"/>
<!-- <rule ref="Fox91CodingStandardStrict"/> -->
</ruleset>