-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.phpcs.xml
43 lines (35 loc) · 1.61 KB
/
.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
35
36
37
38
39
40
41
42
43
<?xml version="1.0"?>
<ruleset
name="create-wordpress-project"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/squizlabs/PHP_CodeSniffer/master/phpcs.xsd"
>
<description>PHP_CodeSniffer standard for create-wordpress-project.</description>
<!-- Include Alley Rules -->
<rule ref="Alley-Interactive" />
<!--
Pass some flags to PHPCS:
p flag: Show progress of the run.
s flag: Show sniff codes in all reports.
-->
<arg value="ps" />
<!-- Whenever possible, cache the scan results and re-use those for unchanged files on the next scan. -->
<arg name="cache" value=".phpcs.cache.json" />
<!-- Check up to 20 files simultaneously. -->
<arg name="parallel" value="20" />
<!-- Set severity to 1 to see everything that isn't effectively turned off. -->
<arg name="severity" value="1" />
<!-- Exclude a few directories and autogenerated files. -->
<exclude-pattern>build/</exclude-pattern>
<exclude-pattern>tests/</exclude-pattern>
<exclude-pattern>vendor/</exclude-pattern>
<!-- The version set here matches the minimum version tested in CI. -->
<config name="minimum_supported_wp_version" value="6.2" />
<!-- Turn off some rules for scaffolded files. -->
<rule ref="WordPress.NamingConventions.ValidPostTypeSlug.NotStringLiteral">
<exclude-pattern>./plugins/create-wordpress-plugin/src/post-types/</exclude-pattern>
</rule>
<rule ref="WordPressVIPMinimum.Hooks.AlwaysReturnInFilter.AbstractMethod">
<exclude-pattern>./plugins/create-wordpress-plugin/src/post-types/</exclude-pattern>
</rule>
</ruleset>