-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathphpcs.xml
22 lines (18 loc) · 926 Bytes
/
phpcs.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<ruleset name="drupal">
<description>PHP CodeSniffer configuration for Drupal coding standards in Commerce Kickstart.</description>
<file>./commerce_kickstart.profile</file>
<file>./commerce_kickstart.install</file>
<config name="ignore_errors_on_exit" value="0"/>
<config name="ignore_warnings_on_exit" value="0"/>
<config name="default_standard" value="Drupal"/>
<arg name="extensions" value="php,module,inc,install,test,profile,theme" />
<exclude-pattern>*/node_modules/*</exclude-pattern>
<exclude-pattern>*.css</exclude-pattern>
<exclude-pattern>*/assets/*</exclude-pattern>
<exclude-pattern>*/components/*</exclude-pattern>
<exclude-pattern>commerce_kickstart.info.yml</exclude-pattern>
<exclude-pattern>*.md</exclude-pattern>
<exclude-pattern>PULL_REQUEST_TEMPLATE\.md</exclude-pattern>
<config name="drupal_core_version" value="9" />
</ruleset>