forked from danielbachhuber/composer-lock-updater
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
20 lines (15 loc) · 626 Bytes
/
phpcs.xml
File metadata and controls
20 lines (15 loc) · 626 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0"?>
<ruleset name="PHP_CodeSniffer">
<description>Enforce TABS instead of SPACES for indentation.</description>
<file>bin/clu</file>
<file>src</file>
<!-- At the moment, we do not define a default coding standard; we only enforce TABS instead of SPACES -->
<!-- TABS instead of SPACES. See: https://github.com/squizlabs/PHP_CodeSniffer/issues/467 -->
<arg name="tab-width" value="4" />
<rule ref="Generic.WhiteSpace.DisallowSpaceIndent"/>
<rule ref="Generic.WhiteSpace.ScopeIndent">
<properties>
<property name="tabIndent" value="true"/>
</properties>
</rule>
</ruleset>