-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.phpcs.xml
More file actions
25 lines (23 loc) · 1.16 KB
/
.phpcs.xml
File metadata and controls
25 lines (23 loc) · 1.16 KB
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
<?xml version="1.0"?>
<ruleset name="WooCommerce ECP Plugin Coding Standards">
<description>Generally-applicable sniffs for WooCommerce ECP Plugin</description>
<rule ref="WordPress">
<exclude name="Generic.Commenting.DocComment" />
<exclude name="Squiz.Commenting.BlockComment" />
<exclude name="Squiz.Commenting.ClassComment" />
<exclude name="Squiz.Commenting.ClosingDeclarationComment" />
<exclude name="Squiz.Commenting.DocCommentAlignment" />
<exclude name="Squiz.Commenting.EmptyCatchComment" />
<exclude name="Squiz.Commenting.FileComment" />
<exclude name="Squiz.Commenting.FunctionComment" />
<exclude name="Squiz.Commenting.FunctionCommentThrowTag" />
<exclude name="Squiz.Commenting.InlineComment" />
<exclude name="Squiz.Commenting.VariableComment" />
</rule>
<exclude-pattern>*/genesis/*</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
<exclude-pattern>*.js</exclude-pattern>
<exclude-pattern>*.min.css</exclude-pattern>
<exclude-pattern>*.asset.php</exclude-pattern>
<exclude-pattern>*/node_modules/*</exclude-pattern>
</ruleset>