-
Notifications
You must be signed in to change notification settings - Fork 2
/
phpcs.xml
34 lines (27 loc) · 959 Bytes
/
phpcs.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0"?>
<ruleset name="Global Payments Payment Gateway Provider for WooCommerce">
<!-- Configs -->
<config name="installed_paths" value="vendor/wp-coding-standards/wpcs" />
<config name="minimum_supported_wp_version" value="5.0" />
<file>.</file>
<!-- Exclude paths -->
<exclude-pattern>tests/</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
<exclude-pattern>*/wp-content/*</exclude-pattern>
<!-- Rules -->
<rule ref="Generic.Commenting" />
<rule ref="WordPress-Extra" />
<rule ref="WordPress.WP.I18n">
<properties>
<property name="text_domain" type="array" value="globalpayments-gateway-provider-for-woocommerce" />
</properties>
</rule>
<rule ref="WordPress.Files.FileName">
<properties>
<property name="strict_class_file_names" value="false"/>
</properties>
</rule>
<rule ref="WordPress.Files.FileName.NotHyphenatedLowercase">
<exclude-pattern>*</exclude-pattern>
</rule>
</ruleset>