-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpcs.xml
More file actions
25 lines (23 loc) · 793 Bytes
/
phpcs.xml
File metadata and controls
25 lines (23 loc) · 793 Bytes
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
<?xml version="1.0"?>
<ruleset name="CS Standards">
<!-- display progress -->
<arg value="p" />
<!-- Colorful output -->
<arg name="colors"/>
<!-- Only PHP files -->
<arg name="extensions" value="php"/>
<!-- Rules -->
<rule ref="PSR12">
</rule>
<rule ref="SlevomatCodingStandard.Namespaces.UnusedUses">
<properties>
<property name="searchAnnotations" value="true"/>
</properties>
</rule>
<rule ref="SlevomatCodingStandard.Namespaces.AlphabeticallySortedUses" />
<rule ref="SlevomatCodingStandard.Namespaces.UselessAlias" />
<rule ref="SlevomatCodingStandard.Namespaces.UseFromSameNamespace" />
<!-- Check src and tests directories -->
<file>NumberToWords.php</file>
<file>test</file>
</ruleset>