-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.phpcs.xml
More file actions
28 lines (21 loc) · 779 Bytes
/
.phpcs.xml
File metadata and controls
28 lines (21 loc) · 779 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
28
<?xml version="1.0"?>
<ruleset name="protected-video">
<description>Protected Video PHPCS ruleset</description>
<arg value="sp" />
<arg name="colors" />
<arg name="extensions" value="php" />
<file>protected-video.php</file>
<file>includes</file>
<file>uninstall.php</file>
<config name="testVersion" value="7.2-" />
<config name="minimum_supported_wp_version" value="6.6" />
<config name="text_domain" value="protected-video" />
<exclude-pattern>build</exclude-pattern>
<exclude-pattern>node_modules</exclude-pattern>
<exclude-pattern>vendor</exclude-pattern>
<rule ref="WordPress" />
<rule ref="PHPCompatibilityWP" />
<rule ref="WordPress.Files.FileName.InvalidClassFileName">
<exclude-pattern>includes/class-*.php</exclude-pattern>
</rule>
</ruleset>