-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
26 lines (20 loc) · 702 Bytes
/
phpcs.xml
File metadata and controls
26 lines (20 loc) · 702 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="Cicnavi PHP PSR12">
<description>
Default Cicnavi PHP PSR12 ruleset
</description>
<!-- Reference: https://raw.githubusercontent.com/squizlabs/PHP_CodeSniffer/master/phpcs.xml.dist -->
<config name="show_progress" value="1"/>
<config name="ignore_warnings_on_exit" value="0"/>
<file>src</file>
<file>tests</file>
<rule ref="PSR12"/>
<rule ref="Generic.WhiteSpace.ScopeIndent">
<properties>
<property name="exact" value="true" />
</properties>
</rule>
<rule ref="Squiz.NamingConventions.ValidVariableName.NotCamelCaps"/>
<!-- Show progress -->
<arg value="p"/>
</ruleset>