-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathphpcs.xml.dist
44 lines (36 loc) · 1.54 KB
/
phpcs.xml.dist
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
<?xml version="1.0" encoding="UTF-8"?>
<ruleset name="loop">
<description>PHP CodeSniffer configuration for Loop</description>
<file>modules/</file>
<file>themes/</file>
<file>loopdk.callbacks.inc</file>
<file>loopdk.info</file>
<file>loopdk.install</file>
<file>loopdk.make</file>
<file>loopdk.profile</file>
<file>drupal.make</file>
<!-- Exclude third party code -->
<exclude-pattern>modules/php-saml/</exclude-pattern>
<exclude-pattern>modules/contrib/</exclude-pattern>
<exclude-pattern>libraries/</exclude-pattern>
<!-- Exclude generated code -->
<exclude-pattern>*\.features\.*</exclude-pattern>
<exclude-pattern>*\.(field_group|strongarm|facetapi_defaults|pages_default|views_default|rules_defaults|path_breadcrumbs|variable)\.inc</exclude-pattern>
<!-- Exclude built code -->
<exclude-pattern>themes/loop/(css|mockups)/</exclude-pattern>
<exclude-pattern>themes/loop/scripts/chosen/</exclude-pattern>
<exclude-pattern>themes/loop/scripts/chosen\..*</exclude-pattern>
<exclude-pattern>*/node_modules/*</exclude-pattern>
<exclude-pattern>modules/loop_external_data</exclude-pattern>
<exclude-pattern>README.md</exclude-pattern>
<!-- Show progress -->
<arg value="p"/>
<!-- Show sniffs -->
<arg value="s"/>
<arg name="extensions" value="php,module,inc,install,test,profile,theme,css,info,txt,md,yml"/>
<config name="drupal_core_version" value="7"/>
<rule ref="Drupal">
<exclude name="Drupal.InfoFiles.AutoAddedKeys.Project"/>
</rule>
<rule ref="Generic.Arrays.DisallowLongArraySyntax"/>
</ruleset>