Files
wp-strava/phpcs.xml
T

20 lines
626 B
XML
Raw Normal View History

<?xml version="1.0"?>
<ruleset name="WPStrava (WordPress-Extra) Coding Standards">
<!-- Include the whole WordPress-Extra standard -->
<rule ref="WordPress-Extra">
<!-- Exlude these class naming conventions - we're using a PSR autoload standard -->
<exclude name="WordPress.Files.FileName.NotHyphenatedLowercase" />
<exclude name="WordPress.Files.FileName.InvalidClassFileName" />
</rule>
2018-03-23 11:21:14 -05:00
2021-03-26 10:53:20 -05:00
<rule ref="PHPCompatibility"/>
2023-01-27 11:51:25 -06:00
<config name="testVersion" value="5.3-8.0"/>
2021-03-26 10:53:20 -05:00
<arg name="extensions" value="php"/>
<file>./src</file>
<file>./wp-strava.php</file>
2018-03-23 11:21:14 -05:00
<exclude-pattern>*/vendor/*</exclude-pattern>
2018-04-06 16:19:22 -05:00
</ruleset>