-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpcs.xml
More file actions
29 lines (23 loc) · 1.04 KB
/
phpcs.xml
File metadata and controls
29 lines (23 loc) · 1.04 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
26
27
28
29
<?xml version="1.0"?>
<ruleset name="Geniem"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/squizlabs/PHP_CodeSniffer/master/phpcs.xsd">
<description>A custom set of rules to check styles for a Geniem WP projects</description>
<file>.</file>
<rule ref="./vendor/devgeniem/geniem-rules-codesniffer/Geniem/ruleset.xml"/>
<!-- Exclude Composer vendor directory. -->
<exclude-pattern>*/.git/*</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
<arg value="sp"/> <!-- Show sniff and progress -->
<arg name="colors"/>
<arg name="extensions" value="php"/>
<arg name="parallel" value="50"/>
<!-- Check code for cross-version PHP compatibility. -->
<config name="testVersion" value="8.1-"/>
<rule ref="WordPress.WP">
<exclude name="WordPress.WP.I18n"/>
</rule>
<rule ref="WordPress.NamingConventions">
<exclude name="WordPress.NamingConventions.PrefixAllGlobals"/>
</rule>
</ruleset>