Translated using Weblate (Armenian)
[phpmyadmin.git] / PMAStandard / ruleset.xml
bloba930c4fd779595fd23c1edd685f87718c7f12721
1 <?xml version="1.0"?>
2 <ruleset name="phpMyAdmin Standard">
3   <!-- http://pear.php.net/manual/en/package.php.php-codesniffer.annotated-ruleset.php -->
4   <description>phpMyAdmin custom coding standard</description>
6   <rule ref="PEAR">
7     <exclude name="PEAR.Commenting.FileComment" />
8     <exclude name="PEAR.Commenting.ClassComment" />
9     <exclude name="PEAR.Commenting.FunctionComment" />
10     <exclude name="Generic.Commenting.DocComment" />
11   </rule>
12   <rule ref="Generic.Files.LineLength">
13     <properties>
14       <property name="lineLimit" value="85"/>
15       <property name="absoluteLineLimit" value="0"/>
16     </properties>
17   </rule>
18   <rule ref="Generic.Metrics.NestingLevel" />
19   <!-- There MUST NOT be trailing whitespace at the end of lines. -->
20   <rule ref="Squiz.WhiteSpace.SuperfluousWhitespace" />
21 </ruleset>