generated from fumeapp/laranuxt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpcs.xml
36 lines (29 loc) · 1.22 KB
/
phpcs.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0"?>
<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="Rimsys" xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/squizlabs/PHP_CodeSniffer/master/phpcs.xsd">
<description>The LaraNuxt Ruleset</description>
<rule ref="PSR12"/>
<rule ref="PSR12.Traits.UseDeclaration">
<exclude name="PSR12.Traits.UseDeclaration.MultipleImport" />
</rule>
<rule ref="PSR12.Classes.ClassInstantiation.MissingParentheses">
<exclude name="PSR12.Classes.ClassInstantiation.MissingParentheses" />
</rule>
<rule ref="PSR12.Files.FileHeader.SpacingAfterBlock">
<exclude name="PSR12.Files.FileHeader.SpacingAfterBlock" />
</rule>
<arg name="colors"/>
<file>app</file>
<file>config</file>
<file>public</file>
<file>resources</file>
<file>routes</file>
<file>tests</file>
<exclude-pattern>*/.phpstorm.meta.php</exclude-pattern>
<exclude-pattern>*/*.blade.php</exclude-pattern>
<exclude-pattern>*/public/index.php</exclude-pattern>
<exclude-pattern>*/database/*</exclude-pattern>
<exclude-pattern>*/cache/*</exclude-pattern>
<exclude-pattern>*/*.js</exclude-pattern>
<exclude-pattern>*/*.css</exclude-pattern>
<exclude-pattern>*/*.xml</exclude-pattern>
</ruleset>