-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathphpcs.xml.dist
More file actions
21 lines (18 loc) · 654 Bytes
/
phpcs.xml.dist
File metadata and controls
21 lines (18 loc) · 654 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0"?>
<ruleset name="SimpleTOC Standards">
<arg name="extensions" value="php" />
<arg name="colors" />
<arg value="s" /><!-- Show sniff codes in all reports -->
<rule ref="WordPress-Core">
<exclude name="WordPress.Files.FileName" />
</rule>
<rule ref="WordPress-Docs"></rule>
<rule ref="WordPress-Extra"></rule>
<rule ref="WordPress-Core"></rule>
<exclude-pattern>/node_modules/</exclude-pattern>
<exclude-pattern>/vendor/</exclude-pattern>
<exclude-pattern>/lib/</exclude-pattern>
<exclude-pattern>/src/</exclude-pattern>
<exclude-pattern>/build/</exclude-pattern>
<exclude-pattern>/dist/</exclude-pattern>
</ruleset>