forked from EFTEC/BladeOne
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
24 lines (17 loc) · 657 Bytes
/
Copy pathphpcs.xml
File metadata and controls
24 lines (17 loc) · 657 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
<?xml version="1.0"?>
<ruleset name="BladeOne Standards">
<description>PHPCS standards for EFTEC/BladeOne</description>
<exclude-pattern>*/docs/*</exclude-pattern>
<exclude-pattern>*/examples/*</exclude-pattern>
<exclude-pattern>*/tests/*</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
<arg name="colors"/>
<rule ref="PSR2"/>
<rule ref="Generic.Files.LineLength.TooLong">
<severity>0</severity>
</rule>
<!-- Exclude Camel casing for _e,_ef,_n -->
<rule ref="PSR1.Methods.CamelCapsMethodName">
<exclude-pattern>/lib/BladeOneLang\.php</exclude-pattern>
</rule>
</ruleset>