phpcs.xml.dist 1.7 KB

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0"?>
  2. <ruleset name="phpMyAdmin Coding Standard">
  3. <rule ref="PMAStandard">
  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>
  22. <arg value="sp"/>
  23. <arg name="colors"/>
  24. <arg name="extensions" value="php"/>
  25. <exclude-pattern>*/build/*</exclude-pattern>
  26. <exclude-pattern>*/node_modules/*</exclude-pattern>
  27. <exclude-pattern>*/tmp/*</exclude-pattern>
  28. <exclude-pattern>*/vendor/*</exclude-pattern>
  29. <file>.</file>
  30. </ruleset>