mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-04-24 04:03:01 +08:00
18 lines
585 B
XML
18 lines
585 B
XML
<?xml version="1.0"?>
|
|
<ruleset name="Project Coding Standards">
|
|
<description>PHPCS config for WordPress in v-wp-updater/ and PHP in v-update-api/</description>
|
|
|
|
<!-- Ignore vendor directories -->
|
|
<exclude-pattern>vendor/*</exclude-pattern>
|
|
<exclude-pattern>v-update-api/vendor/*</exclude-pattern>
|
|
|
|
<!-- WordPress rules for v-wp-updater -->
|
|
<rule ref="WordPress-Core">
|
|
<include-pattern>v-wp-updater/</include-pattern>
|
|
</rule>
|
|
|
|
<!-- Generic PHP rules for v-update-api -->
|
|
<rule ref="PSR12">
|
|
<include-pattern>v-update-api/</include-pattern>
|
|
</rule>
|
|
</ruleset>
|