-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathphpcs.xml
31 lines (25 loc) · 948 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
<?xml version="1.0"?>
<ruleset name="Import Social Events">
<description>Import Social Events allows you to import Facebook ( facebook.com ) events into your WordPress site.</description>
<file>.</file>
<!-- Show progress and sniff codes in all reports. -->
<arg value="ps"/>
<!-- A path to strip from the front of file paths inside reports. -->
<arg name="colors"/>
<arg name="extensions" value="php"/>
<!-- Configs -->
<config name="minimum_supported_wp_version" value="4.9" />
<config name="testVersion" value="5.3-"/>
<exclude-pattern>node_modules/</exclude-pattern>
<exclude-pattern>vendor/</exclude-pattern>
<exclude-pattern>.github/</exclude-pattern>
<!-- Rules -->
<rule ref="WordPress" />
<!-- Temporary Rule Exclusions -->
<rule ref="WordPress.Files.FileName">
<properties>
<property name="strict_class_file_names" value="false"/>
</properties>
</rule>
<!-- End of Temporary Rule Exclusions -->
</ruleset>