forked from mybb/mybb2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpcs.xml
30 lines (23 loc) · 809 Bytes
/
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
<?xml version="1.0"?>
<ruleset name="MyBB 2.0 Core">
<description>Configuration for MyBB 2.0</description>
<file>app</file>
<file>config</file>
<file>database</file>
<file>resources</file>
<file>tests</file>
<exclude-pattern>tests/report/</exclude-pattern>
<exclude-pattern>*/*.blade.php</exclude-pattern>
<rule ref="PSR2"/>
<rule ref="PSR1.Classes.ClassDeclaration.MissingNamespace">
<exclude-pattern>*/database/*</exclude-pattern>
<exclude-pattern>*/tests/*</exclude-pattern>
</rule>
<rule ref="PSR1.Methods.CamelCapsMethodName">
<exclude-pattern>*/Presenters/*</exclude-pattern>
</rule>
<rule ref="Generic.Files.LineLength">
<exclude-pattern>*/database/*</exclude-pattern>
<exclude-pattern>*/resources/*</exclude-pattern>
</rule>
</ruleset>