You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
869 B

1 year ago
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ruleset name="php-telegram-bot-example-bot-ruleset">
  3. <description>PHP Code Sniffer</description>
  4. <arg value="snp"/>
  5. <arg name="colors"/>
  6. <arg name="parallel" value="8"/>
  7. <arg name="encoding" value="utf-8"/>
  8. <arg name="report-width" value="150"/>
  9. <arg name="extensions" value="php"/>
  10. <file>.</file>
  11. <exclude-pattern>*/vendor/*</exclude-pattern>
  12. <rule ref="PSR12"/>
  13. <rule ref="Generic.CodeAnalysis.EmptyStatement">
  14. <!-- Allow empty statements for explanation comments -->
  15. <exclude name="Generic.CodeAnalysis.EmptyStatement"/>
  16. </rule>
  17. <rule ref="Squiz.WhiteSpace.ControlStructureSpacing">
  18. <!-- Allow the empty line to improve readability -->
  19. <exclude name="Squiz.WhiteSpace.ControlStructureSpacing.SpacingBeforeClose"/>
  20. </rule>
  21. </ruleset>