Friendica Communications Platform
(please note that this is a clone of the repository at github, issues are handled there)
https://friendi.ca
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
549 B
15 lines
549 B
<?xml version="1.0"?> |
|
<ruleset name="Friendica"> |
|
<description>Friendica Coding Standards: PSR2 with tabs instead of spaces</description> |
|
<arg name="tab-width" value="4"/> |
|
<rule ref="PSR2"> |
|
<exclude name="Generic.WhiteSpace.DisallowTabIndent"/> |
|
</rule> |
|
<rule ref="Generic.WhiteSpace.DisallowSpaceIndent"/> |
|
<rule ref="Generic.WhiteSpace.ScopeIndent"> |
|
<properties> |
|
<property name="indent" value="4"/> |
|
<property name="tabIndent" value="true"/> |
|
</properties> |
|
</rule> |
|
</ruleset>
|
|
|