-
Notifications
You must be signed in to change notification settings - Fork 305
/
phpcs.xml
29 lines (26 loc) · 1.07 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
<?xml version="1.0"?>
<ruleset name="PHP EWS">
<description>
Coding standard for the PHP EWS library that is based on the PHPCS sniff
with some changes to keep consistency with the Exchange Web Services
API.
</description>
<rule ref="PSR1">
<!-- EWS uses StudlyCaps for operation and element names. -->
<exclude name="PSR1.Methods.CamelCapsMethodName.NotCamelCaps"/>
</rule>
<rule ref="PSR2">
<!-- Some classes use $_ as a valid property name. -->
<exclude name="PSR2.Classes.PropertyDeclaration.Underscore"/>
</rule>
<rule ref="Generic.Files.LineLength.TooLong">
<properties>
<property name="lineLimit" value="80" />
<property name="absoluteLineLimit" value="120" />
</properties>
<!-- This is an auto-generated file, allow long lines. -->
<exclude-pattern>src/ClassMap.php</exclude-pattern>
<!-- There are sample ids in the examples that may exceed the limit. -->
<exclude-pattern>examples/*</exclude-pattern>
</rule>
</ruleset>