forked from pantheon-systems/solr-power
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpcs.ruleset.xml
52 lines (46 loc) · 1.77 KB
/
phpcs.ruleset.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0"?>
<ruleset name="WordPress Coding Standards for Plugins">
<description>Generally-applicable sniffs for WordPress plugins</description>
<rule ref="WordPress-Core" />
<rule ref="WordPress-Docs" />
<exclude-pattern>*/examples/*</exclude-pattern>
<exclude-pattern>*/node_modules/*</exclude-pattern>
<exclude-pattern>*/tests/*</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
<rule ref="Squiz.Commenting.FunctionComment.MissingParamTag">
<exclude-pattern>*/includes/class-solrpower-cli.php</exclude-pattern>
</rule>
<rule ref="WordPress.Files.FileName.InvalidClassFileName">
<exclude-pattern>*/tests/*</exclude-pattern>
</rule>
<rule ref="WordPress.Files.FileName.NotHyphenatedLowercase">
<exclude-pattern>*/template/*</exclude-pattern>
</rule>
<rule ref="PSR2.ControlStructures.SwitchDeclaration.BodyOnNextLineCASE">
<exclude-pattern>*/*</exclude-pattern>
</rule>
<rule ref="PSR2.ControlStructures.SwitchDeclaration.WrongOpenercase">
<exclude-pattern>*/*</exclude-pattern>
</rule>
<rule ref="Squiz.PHP.EmbeddedPhp.ContentBeforeOpen">
<exclude-pattern>*/*</exclude-pattern>
</rule>
<rule ref="Squiz.PHP.EmbeddedPhp.ContentAfterOpen">
<exclude-pattern>*/*</exclude-pattern>
</rule>
<rule ref="Squiz.PHP.EmbeddedPhp.ContentBeforeEnd">
<exclude-pattern>*/*</exclude-pattern>
</rule>
<rule ref="Squiz.PHP.EmbeddedPhp.NoSemicolon">
<exclude-pattern>*/*</exclude-pattern>
</rule>
<rule ref="WordPress.WhiteSpace.DisallowInlineTabs.NonIndentTabsUsed">
<exclude-pattern>*/*</exclude-pattern>
</rule>
<rule ref="WordPress.WP.CapitalPDangit.Misspelled">
<exclude-pattern>*/*</exclude-pattern>
</rule>
<rule ref="Squiz.ControlStructures.ControlSignature.NewlineAfterOpenBrace">
<exclude-pattern>*/*</exclude-pattern>
</rule>
</ruleset>