forked from DSJAS/DSJAS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
43 lines (28 loc) · 873 Bytes
/
phpcs.xml
File metadata and controls
43 lines (28 loc) · 873 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0"?>
<ruleset name="DSJAS Standard">
<description>DSJAS Code Standard</description>
<file>./public/</file>
<exclude-pattern>*/include/vendor/**/*</exclude-pattern>
<exclude-pattern>Debug.php</exclude-pattern>
<rule ref="pear"/>
<rule ref="Generic.Files.LineEndings">
<properties>
<property name="eolChar" value="\r\n" />
</properties>
</rule>
<rule ref="Generic.Files.LineLength">
<severity>0</severity>
</rule>
<rule ref="PEAR.Commenting.FileComment.Missing">
<severity>0</severity>
</rule>
<rule ref="PEAR.Commenting.FileComment">
<severity>0</severity>
</rule>
<rule ref="PEAR.Commenting.FunctionComment.Missing">
<severity>0</severity>
</rule>
<rule ref="PEAR.Commenting.ClassComment.Missing">
<severity>0</severity>
</rule>
</ruleset>