19 lines
537 B
XML
19 lines
537 B
XML
<?xml version="1.0"?>
|
|
<ruleset name="speedBB">
|
|
<description>Project coding standard based on PSR-12.</description>
|
|
|
|
<rule ref="PSR12"/>
|
|
|
|
<file>app</file>
|
|
<file>config</file>
|
|
<file>database</file>
|
|
<file>routes</file>
|
|
<file>tests</file>
|
|
|
|
<exclude-pattern>bootstrap/cache/*</exclude-pattern>
|
|
<exclude-pattern>node_modules/*</exclude-pattern>
|
|
<exclude-pattern>public/build/*</exclude-pattern>
|
|
<exclude-pattern>storage/*</exclude-pattern>
|
|
<exclude-pattern>vendor/*</exclude-pattern>
|
|
</ruleset>
|