-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathphpcs.xml
30 lines (28 loc) · 1.12 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
30
<?xml version="1.0"?>
<ruleset name="DocuSign">
<file>src/Controllers</file>
<file>src/Services</file>
<file>src/EG001EmbeddedSigning.php</file>
<file>public/index.php</file>
<exclude-pattern>*/docs/*</exclude-pattern>
<exclude-pattern>*/templates/*</exclude-pattern>
<exclude-pattern>*/public/assets/*</exclude-pattern>
<exclude-pattern>*/public/demo_documents/*</exclude-pattern>
<arg name="extensions" value="php" />
<!-- Include basic PHP coding standards -->
<rule ref="PSR1"/>
<rule ref="PSR2"/>
<!-- Exclude comment-related rules -->
<exclude name="Squiz.Commenting.ClassComment"/>
<exclude name="Squiz.Commenting.FunctionComment"/>
<exclude name="Squiz.Commenting.VariableComment"/>
<exclude name="Generic.Commenting.DocComment"/>
<exclude name="Generic.Files.LineEndings.InvalidEOLChar"/>
<!-- Define other rules and configurations here -->
<rule ref="Generic.Files.LineLength">
<properties>
<property name="lineLimit" value="90"/>
<property name="absoluteLineLimit" value="130"/>
</properties>
</rule>
</ruleset>