-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
23 lines (21 loc) · 724 Bytes
/
phpcs.xml
File metadata and controls
23 lines (21 loc) · 724 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="PHP_CodeSniffer">
<file>app</file>
<file>bootstrap/app.php</file>
<file>bootstrap/providers.php</file>
<file>database/factories</file>
<file>database/seeders</file>
<file>routes</file>
<file>tests</file>
<arg name="colors"/>
<rule ref="PSR12"/>
<rule ref="Squiz.WhiteSpace.ScopeKeywordSpacing">
<exclude name="Squiz.WhiteSpace.ScopeKeywordSpacing"/>
</rule>
<rule ref="PSR12.Classes.ClassInstantiation.MissingParentheses">
<exclude name="PSR12.Classes.ClassInstantiation.MissingParentheses"/>
</rule>
<rule ref="Generic.Files.LineLength">
<exclude name="Generic.Files.LineLength"/>
</rule>
</ruleset>