-
Notifications
You must be signed in to change notification settings - Fork 34
/
phpcs.xml
35 lines (31 loc) · 1.76 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
<?xml version="1.0"?>
<ruleset name="Materia">
<description>Materia code standard based on early FUELPHP standards.</description>
<!-- Prevents warnings from causing non-zero exit codes -->
<config name="ignore_warnings_on_exit" value="true"/>
<rule ref="./fuel/vendor/ucfcdl/fuelphp-phpcs/Standards/FuelPHP/ruleset.xml"/>
<exclude-pattern>*/fuel/app/bootstrap.php</exclude-pattern>
<exclude-pattern>*/fuel/app/config/*</exclude-pattern>
<exclude-pattern>*/fuel/app/logs/*</exclude-pattern>
<exclude-pattern>*/fuel/app/modules/lti/config/*</exclude-pattern>
<exclude-pattern>*/fuel/app/themes*</exclude-pattern>
<exclude-pattern>*/fuel/app/tmp/widgetsrc/*</exclude-pattern>
<exclude-pattern>*/fuel/core/*</exclude-pattern>
<exclude-pattern>*/fuel/packages/auth/*</exclude-pattern>
<exclude-pattern>*/fuel/packages/email/*</exclude-pattern>
<exclude-pattern>*/fuel/packages/materia-theme-ucf/*</exclude-pattern>
<exclude-pattern>*/fuel/app/classes/materia/fuel/*</exclude-pattern>
<exclude-pattern>*/fuel/packages/oil/*</exclude-pattern>
<exclude-pattern>*/fuel/packages/orm/*</exclude-pattern>
<exclude-pattern>*/fuel/packages/parser/*</exclude-pattern>
<exclude-pattern>*/fuel/packages/parser/*</exclude-pattern>
<exclude-pattern>*/fuel/packages/plupload/*</exclude-pattern>
<exclude-pattern>*/fuel/vendor/*</exclude-pattern>
<exclude-pattern>*/node_modules/*</exclude-pattern>
<exclude-pattern>*/githooks/*</exclude-pattern>
<exclude-pattern>*/licenses/*</exclude-pattern>
<exclude-pattern>*/migrations/*</exclude-pattern>
<exclude-pattern>*/public/widget/*</exclude-pattern>
<exclude-pattern>*/spec/*</exclude-pattern>
<exclude-pattern>migrations.php</exclude-pattern>
</ruleset>