forked from Getbeans/Beans
-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpcs.xml.dist
77 lines (66 loc) · 2.49 KB
/
phpcs.xml.dist
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?xml version="1.0"?>
<ruleset name="Beans">
<description>The code standard for Beans.</description>
<file>.</file>
<!-- Ignore these directories -->
<exclude-pattern>*/dist/*</exclude-pattern>
<exclude-pattern>node_modules/*</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
<exclude-pattern>*/vendors/*</exclude-pattern>
<!-- PHP only. We'll use other validators for JS, CSS, etc. -->
<arg name="extensions" value="php"/>
<!-- Reporting Configuration -->
<arg name="colors"/>
<arg value="sp"/>
<arg name="report" value="full,summary,source"/>
<!-- Remove user environment specific parts from the file paths -->
<arg name="basepath" value="."/>
<!-- Enable parallel processing which speeds up the sniffs when available. -->
<arg name="parallel" value="32"/>
<!-- PHP Rules -->
<rule ref="PHPCompatibility">
<!-- Tests are at PHP 5.6. -->
<exclude-pattern>*/tests/*</exclude-pattern>
</rule>
<config name="testVersion" value="5.2-"/>
<config name="minimum_supported_wp_version" value="4.8"/>
<!-- WordPress Rules -->
<rule ref="WordPress">
<!-- Exclude new enqueue rules because Beans uses different terminology in the Compiler -->
<exclude name="WordPress.WP.EnqueuedResourceParameters"/>
<!-- Exclude until v2 as this applies after WP 4.4 with upgrades in PHP 5.3 -->
<exclude name="WordPress.WP.AlternativeFunctions.parse_url_parse_url"/>
<exclude name="PEAR.NamingConventions.ValidClassName.StartWithCapital"/>
</rule>
<rule ref="WordPress.Files.FileName">
<properties>
<property name="is_theme" value="true"/>
<property name="strict_class_file_names" value="false"/>
</properties>
<exclude name="WordPress.Files.FileName.NotHyphenatedLowercase"/>
</rule>
<rule ref="WordPress.NamingConventions.PrefixAllGlobals">
<properties>
<property name="prefixes" type="array">
<element value="beans"/>
<element value="_beans"/>
<element value="_Beans"/>
</property>
</properties>
</rule>
<rule ref="WordPress.WhiteSpace.ControlStructureSpacing">
<properties>
<property name="blank_line_check" value="true" />
</properties>
<!-- Beans requires a new blank line BEFORE each control structure.
Excluding this rule will allow a blank line after all control structures. -->
<exclude name="WordPress.WhiteSpace.ControlStructureSpacing.BlankLineAfterStart"/>
</rule>
<rule ref="WordPress.WP.I18n">
<properties>
<property name="text_domain" type="array">
<element value="tm-beans"/>
</property>
</properties>
</rule>
</ruleset>