-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
24 lines (20 loc) · 718 Bytes
/
Copy pathphpcs.xml
File metadata and controls
24 lines (20 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0"?>
<ruleset name="Plugin">
<description>PHPCS rules for this plugin.</description>
<arg name="basepath" value="."/>
<arg name="colors"/>
<arg value="p"/>
<!-- Choose ONE as your baseline -->
<rule ref="WordPress" />
<!-- or: <rule ref="WordPress-Core" /> -->
<!-- or: <rule ref="WordPress-Extra" /> -->
<file>.</file>
<!-- Typical exclusions -->
<exclude-pattern>vendor/*</exclude-pattern>
<exclude-pattern>node_modules/*</exclude-pattern>
<exclude-pattern>build/*</exclude-pattern>
<exclude-pattern>dist/*</exclude-pattern>
<exclude-pattern>*.js</exclude-pattern>
<exclude-pattern>*.css</exclude-pattern>
<exclude-pattern>assets/*</exclude-pattern>
</ruleset>