-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml.dist
More file actions
46 lines (37 loc) · 1.35 KB
/
phpcs.xml.dist
File metadata and controls
46 lines (37 loc) · 1.35 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0"?>
<ruleset name="ButtonFlow Coding Standards">
<description>WordPress Coding Standards for ButtonFlow plugin</description>
<arg value="ps"/>
<arg name="colors"/>
<arg name="basepath" value="."/>
<arg name="parallel" value="20"/>
<arg name="extensions" value="php"/>
<arg name="cache" value=".phpcs-cache"/>
<file>.</file>
<exclude-pattern>*/vendor/*</exclude-pattern>
<exclude-pattern>*/.git/*</exclude-pattern>
<rule ref="WordPress">
<exclude name="WordPress.Files.FileName.InvalidClassFileName"/>
<exclude name="WordPress.Files.FileName.NotHyphenatedLowercase"/>
</rule>
<rule ref="PHPCompatibilityWP">
<include-pattern>*\.php$</include-pattern>
</rule>
<config name="minimum_supported_wp_version" value="6.5"/>
<config name="testVersion" value="8.0-"/>
<rule ref="WordPress.WP.I18n">
<properties>
<property name="text_domain" type="array">
<element value="buttonflow"/>
</property>
</properties>
</rule>
<rule ref="WordPress.NamingConventions.PrefixAllGlobals">
<properties>
<property name="prefixes" type="array">
<element value="buttonflow"/>
<element value="ButtonFlow"/>
</property>
</properties>
</rule>
</ruleset>