-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
36 lines (36 loc) · 1.08 KB
/
phpcs.xml
File metadata and controls
36 lines (36 loc) · 1.08 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<ruleset name="Coding Standard">
<description>Coding Standard</description>
<!-- Display Progress -->
<arg value="p"/>
<!-- Use Colorized Output -->
<arg name="colors"/>
<!-- Rule Set -->
<rule ref="PSR2"/>
<!-- preventing duplicate class name -->
<rule ref="Generic.Classes.DuplicateClassName"/>
<!-- must be have line ending -->
<rule ref="Generic.Files.LineEndings"/>
<!-- array must be use short syntax array() == [] -->
<rule ref="Generic.Arrays.DisallowLongArraySyntax"/>
<!--//
= Path To Check
//-->
<!-- Applications -->
<file>App</file>
<!--//
component lists
- Languages exclude
//-->
<file>Components/Containers</file>
<file>Components/Exceptions</file>
<file>Components/Middlewares</file>
<file>Components/Models</file>
<file>Components/Routes</file>
<file>Components/Worker</file>
<file>Components/bootstrap.php</file>
<!-- Unit Test -->
<file>Tests</file>
<!-- Public Web -->
<file>Web</file>
</ruleset>