forked from GOCDB/gocdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
22 lines (18 loc) · 751 Bytes
/
phpcs.xml
File metadata and controls
22 lines (18 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<ruleset name="GOCDB rule set for PHP CodeSniffer"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="phpcs.xsd">
<description>GOCDb rule set for PHP CodeSniffer.</description>
<!-- Include the PSR-12 standard. The CodeSniffer ruleset for PSR-12 includes PSR-1.
Published PSR-12 standard:
https://www.php-fig.org/psr/psr-12/
Ruleset definition here:
https://github.com/squizlabs/PHP_CodeSniffer/blob/master/src/Standards/PSR12/ruleset.xml
-->
<rule ref="PSR12"/>
<rule ref="Generic.Files.LineLength">
<properties>
<property name="lineLimit" value="80"/>
</properties>
</rule>
</ruleset>