Adding composer lock for 4.9.8
[phpmyadmin.git] / phpcs.xml.dist
blob72448ac4744b100e9e51d0f287c9f76317a6d55b
1 <?xml version="1.0"?>
2 <ruleset name="phpMyAdmin Coding Standard">
3 <rule ref="./vendor/phpmyadmin/coding-standard/PMAStandard/ruleset.xml">
4 <exclude name="Generic.Metrics.NestingLevel.TooHigh"/>
5 <exclude name="PSR1.Files.SideEffects.FoundWithSymbols"/>
6 <exclude name="PSR1.Classes.ClassDeclaration.MissingNamespace"/>
7 <exclude name="PSR1.Classes.ClassDeclaration.MultipleClasses"/>
8 <exclude name="Squiz.Classes.ValidClassName.NotCamelCaps"/>
9 <exclude name="PMAStandard.Commenting.FileComment.Missing"/>
10 <exclude name="PMAStandard.Commenting.ClassComment.Missing"/>
11 <exclude name="PMAStandard.Commenting.ClassComment.MissingPackageTag"/>
12 <exclude name="PMAStandard.Commenting.FunctionComment.Missing"/>
13 <exclude name="PMAStandard.Commenting.FunctionComment.MissingParamComment"/>
14 <exclude name="PMAStandard.Commenting.FunctionComment.MissingParamName"/>
15 <exclude name="PMAStandard.Commenting.FunctionComment.MissingParamTag"/>
16 <exclude name="PMAStandard.Commenting.FunctionComment.MissingReturn"/>
17 <exclude name="PMAStandard.Commenting.FunctionComment.ExtraParamComment"/>
18 <exclude name="PMAStandard.Commenting.FunctionComment.ParamNameNoMatch"/>
19 <exclude name="PMAStandard.Commenting.FunctionComment.SpacingAfter"/>
20 <exclude name="PMAStandard.Files.SpacesAroundConcat.Found"/>
21 </rule>
23 <arg value="sp"/>
24 <arg name="colors"/>
25 <arg name="extensions" value="php"/>
27 <exclude-pattern>*/build/*</exclude-pattern>
28 <exclude-pattern>*/node_modules/*</exclude-pattern>
29 <exclude-pattern>*/tmp/*</exclude-pattern>
30 <exclude-pattern>*/vendor/*</exclude-pattern>
32 <file>.</file>
33 </ruleset>