-
Notifications
You must be signed in to change notification settings - Fork 188
Expand file tree
/
Copy pathphpcs.xml
More file actions
21 lines (18 loc) · 732 Bytes
/
Copy pathphpcs.xml
File metadata and controls
21 lines (18 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0"?>
<ruleset name="JsonMapper"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="phpcs.xsd">
<rule ref="PEAR">
<exclude name="PEAR.Commenting.FileComment.Missing"/>
<exclude name="PEAR.Commenting.ClassComment.MissingCategoryTag"/>
<exclude name="PEAR.Commenting.FunctionComment.MissingReturn"/>
<!-- https://github.com/PHPCSStandards/PHP_CodeSniffer/issues/1433 -->
<exclude name="Generic.Commenting.DocComment.TagValueIndent"/>
</rule>
<rule ref="Generic.Files.LineLength">
<properties>
<property name="lineLimit" value="100"/>
</properties>
</rule>
<file>src/</file>
</ruleset>