-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml.dist
More file actions
26 lines (19 loc) · 1.04 KB
/
phpcs.xml.dist
File metadata and controls
26 lines (19 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
<?xml version="1.0" encoding="UTF-8"?>
<ruleset name="localgovdrupal">
<description>PHP CodeSniffer configuration for LocalGovDrupal.</description>
<arg name="extensions" value="inc,install,module,php,profile,test,theme,yml"/>
<config name="drupal_core_version" value="10"/>
<file>web/modules/contrib/</file>
<file>web/profiles/contrib/localgov/</file>
<file>web/themes/contrib/</file>
<!-- Exclude 3rd party code -->
<exclude-pattern>web\/modules\/contrib\/(?!localgov_.*)</exclude-pattern>
<exclude-pattern>web\/themes\/contrib\/(?!localgov_.*)</exclude-pattern>
<!-- Exclude profile version -->
<exclude-pattern>web/profiles/contrib/localgov/localgov.info.yml</exclude-pattern>
<!-- Exclude localgov modules that are on drupal.org -->
<exclude-pattern>web/modules/contrib/localgov_editoria11y</exclude-pattern>
<exclude-pattern>web/modules/contrib/localgov_utilities</exclude-pattern>
<rule ref="./vendor/drupal/coder/coder_sniffer/Drupal"/>
<rule ref="./vendor/drupal/coder/coder_sniffer/DrupalPractice"/>
</ruleset>