Pathologic was missing because of a .git folder inside.
[yaffs-website] / web / modules / contrib / fontyourface / phpcs.xml
1 <?xml version="1.0"?>
2 <ruleset name="@font-your-face coding standards">
3   <description>Drupal 8 coding standards</description>
4
5   <exclude-pattern>*/.git/*</exclude-pattern>
6   <exclude-pattern>*/config/*</exclude-pattern>
7   <exclude-pattern>*/css/*</exclude-pattern>
8   <exclude-pattern>*/js/*</exclude-pattern>
9   <exclude-pattern>*/icons/*</exclude-pattern>
10   <exclude-pattern>*/vendor/*</exclude-pattern>
11
12   <rule ref="Drupal"/>
13
14   <!-- The following rules are intentionally disabled. -->
15   <rule ref="Drupal.Commenting.ClassComment.Missing">
16     <severity>0</severity>
17   </rule>
18   <rule ref="Drupal.Files.LineLength.TooLong">
19     <severity>0</severity>
20   </rule>
21   <rule ref="Drupal.Array.Array.LongLineDeclaration">
22     <severity>0</severity>
23   </rule>
24   <rule ref="Drupal.Commenting.VariableComment.VarOrder">
25     <severity>0</severity>
26   </rule>
27   <!-- Complains about '#element_validate callback:' -->
28   <rule ref="Drupal.Commenting.DocComment.ShortNotCapital">
29     <severity>0</severity>
30   </rule>
31   <!-- Complains a lot about tests which don't need short descriptions. -->
32   <rule ref="Drupal.Commenting.DocComment.MissingShort">
33     <severity>0</severity>
34   </rule>
35   <rule ref="Drupal.Commenting.DocComment.ShortSingleLine">
36     <severity>0</severity>
37   </rule>
38   <!-- Complains about annotation classes. -->
39   <rule ref="Drupal.NamingConventions.ValidVariableName.LowerCamelName">
40     <severity>0</severity>
41   </rule>
42
43 </ruleset>