-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathphpcs.xml
38 lines (29 loc) · 1.14 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
27
28
29
30
31
32
33
34
35
36
37
38
<?xml version="1.0"?>
<ruleset name="codeigniter 4 Coding Standard">
<rule ref="./vendor/codeigniter4/codeigniter4-standard/CodeIgniter4/ruleset.xml"/>
<!-- Paths to check -->
<file>app/Controllers</file>
<file>app/Filters</file>
<file>tests</file>
<rule ref="Squiz.Commenting.ClassComment">
<exclude name="Squiz.Commenting.ClassComment"/>
</rule>
<rule ref="Squiz.Commenting.FunctionComment">
<exclude name="Squiz.Commenting.FunctionComment"/>
</rule>
<rule ref="Squiz.Commenting.VariableComment">
<exclude name="Squiz.Commenting.VariableComment"/>
</rule>
<rule ref="Generic.Commenting.DocComment">
<exclude name="Generic.Commenting.DocComment"/>
</rule>
<rule ref="CodeIgniter4.Commenting.FileComment">
<exclude name="CodeIgniter4.Commenting.FileComment"/>
</rule>
<rule ref="CodeIgniter4.Commenting.ClassComment">
<exclude name="CodeIgniter4.Commenting.ClassComment"/>
</rule>
<rule ref="CodeIgniter4.NamingConventions.ValidVariableName">
<exclude name="CodeIgniter4.NamingConventions.ValidVariableName"/>
</rule>
</ruleset>