-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
25 lines (22 loc) · 722 Bytes
/
phpcs.xml
File metadata and controls
25 lines (22 loc) · 722 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
<?xml version="1.0"?>
<ruleset name="PhotoGps">
<description>The coding standard for PhotoGps.</description>
<config name="php_version" value="80000"/>
<rule ref="PSR12">
</rule>
<!-- tests are special -->
<rule ref="PSR1.Files.SideEffects.FoundWithSymbols">
<exclude-pattern>*/tests/*</exclude-pattern>
</rule>
<rule ref="PSR1.Methods.CamelCapsMethodName.NotCamelCaps">
<exclude-pattern>*/tests/*</exclude-pattern>
</rule>
<rule ref="Generic.Files.LineLength.TooLong">
<exclude-pattern>*/tests/*</exclude-pattern>
</rule>
<!-- Options:
- p: show progress
- s: show the rule name in error
-->
<arg value="ps" />
</ruleset>