-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy path.phpcs.xml
More file actions
27 lines (20 loc) · 777 Bytes
/
.phpcs.xml
File metadata and controls
27 lines (20 loc) · 777 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
25
26
27
<?xml version="1.0"?>
<ruleset name="Creative Commons WordPress">
<description>Creative Commons Wordpress/PHP Coding Standards</description>
<!-- Scan all files in directory -->
<file>.</file>
<!-- Scan only PHP files -->
<arg name="extensions" value="php"/>
<!-- Show colors in console -->
<arg value="-colors"/>
<!-- Show sniff codes in all reports -->
<arg value="ns"/>
<!-- Include the WordPress standard. -->
<rule ref="WordPress">
<!-- Exclude any rules here -->
</rule>
<!-- Add in some extra rules from other standards. -->
<rule ref="Generic.CodeAnalysis.UnusedFunctionParameter"/>
<rule ref="Generic.Commenting.Todo"/>
<config name="minimum_supported_wp_version" value="5.0"/>
</ruleset>