-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathphpcs.xml
More file actions
23 lines (20 loc) · 869 Bytes
/
phpcs.xml
File metadata and controls
23 lines (20 loc) · 869 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0"?>
<ruleset name="Coding Standard">
<arg name="colors"/>
<arg name="tab-width" value="4"/>
<arg name="extensions" value="php"/>
<arg value="sp"/>
<exclude-pattern>*/vendor/*</exclude-pattern>
<exclude-pattern>*/node_modules/*</exclude-pattern>
<exclude-pattern>*/resources/views/cache/*</exclude-pattern>
<exclude-pattern>*/var/*</exclude-pattern>
<exclude-pattern>*/.git/*</exclude-pattern>
<exclude-pattern>*/database/migrations/*</exclude-pattern>
<exclude-pattern>*/public/*</exclude-pattern>
<file>./</file>
<rule ref="PSR12"></rule>
<rule ref="Squiz.Commenting.FunctionComment.MissingParamComment"/>
<rule ref="Squiz.Commenting.ClassComment.Missing"/>
<rule ref="Squiz.Commenting.VariableComment.Missing"/>
<rule ref="Squiz.Commenting.FunctionComment.Missing"/>
</ruleset>