-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.phpcs.xml
26 lines (24 loc) · 1.02 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
<?xml version="1.0"?>
<ruleset name="WP Debugger" namespace="DevKabir\WPDebugger">
<description>Coding standard for Dev Kabir's Projects</description>
<file>plugin.php</file>
<file>src</file>
<arg name="report" value="summary" />
<arg name="colors" />
<arg value="sp" />
<config name="testVersion" value="7.1-" />
<config name="minimum_wp_version" value="5.2" />
<rule ref="WordPress">
<exclude name="WordPress.Files.FileName.NotHyphenatedLowercase" />
<exclude name="WordPress.Files.FileName.InvalidClassFileName"/>
<exclude name="Squiz.Commenting.FileComment.Missing" />
<exclude name="Squiz.Commenting.ClassComment.Missing" />
<exclude name="WordPress.DB.DirectDatabaseQuery" />
<exclude name="WordPress.DB.PreparedSQL.NotPrepared" />
</rule>
<rule ref="WordPress.WP.I18n">
<properties>
<property name="text_domain" type="array" value="your-plugin-name" />
</properties>
</rule>
</ruleset>