-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.phpcs.xml
executable file
·23 lines (19 loc) · 1.01 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
<?xml version="1.0"?>
<ruleset name="Seedco Server Standard" namespace="Seedco/Server">
<description>Coding Standards for the Seedco Server and Php 7.4</description>
<exclude-pattern>*/vendor/*</exclude-pattern>
<exclude-pattern>*/system/*</exclude-pattern>
<exclude-pattern>*/tests/*</exclude-pattern>
<exclude-pattern>*/app/Config/*</exclude-pattern>
<exclude-pattern>*/app/Views/errors/*</exclude-pattern>
<exclude-pattern>*/app/Database/Migrations/*</exclude-pattern>
<config name="testVersion" value="7.4-"/>
<rule ref="CodeIgniter4"/>
<rule ref="PHPCompatibility">
<exclude name="CodeIgniter4.Commenting.FileComment.Missing" />
<exclude name="CodeIgniter4.Operators.IsIdentical.IsEqualNotAllowed" />
<exclude name="CodeIgniter4.Operators.IsNotIdentical.IsNotEqualNotAllowed" />
<exclude name="Squiz.Commenting.VariableComment.Missing" />
<exclude name="CodeIgniter4.NamingConventions.ValidVariableName.ObjectVariableNotLowerCamelCase" />
</rule>
</ruleset>