generated from chialab/bedita-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpcs.xml.dist
34 lines (30 loc) · 1.11 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
<?xml version="1.0"?>
<ruleset name="App">
<file>./src</file>
<file>./tests</file>
<file>./config</file>
<file>./webroot</file>
<file>./plugins/Chialab/src</file>
<file>./plugins/Chialab/tests</file>
<file>./plugins/Chialab/config</file>
<file>./plugins/Chialab/webroot</file>
<file>./plugins/OpenSource/src</file>
<file>./plugins/OpenSource/tests</file>
<file>./plugins/OpenSource/config</file>
<file>./plugins/OpenSource/webroot</file>
<arg name="colors"/>
<arg value="p"/>
<arg name="extensions" value="php" />
<arg name="ignore" value="*/Migrations/*" />
<config name="installed_paths" value="../../cakephp/cakephp-codesniffer,../../slevomat/coding-standard"/>
<rule ref="CakePHP"/>
<rule ref="SlevomatCodingStandard.TypeHints.UnionTypeHintFormat">
<properties>
<property name="shortNullable" type="string" value="no"/>
<property name="nullPosition" type="string" value="last"/>
</properties>
</rule>
<rule ref="Generic.Files.LineLength.TooLong">
<severity>0</severity>
</rule>
</ruleset>