forked from ubc/ubc-vpfo-templates-styles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
26 lines (18 loc) · 716 Bytes
/
phpcs.xml
File metadata and controls
26 lines (18 loc) · 716 Bytes
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
<?xml version="1.0"?>
<ruleset name="VPFO Templates Styles">
<description>PHP_CodeSniffer rules for VPFO</description>
<!-- Specify the coding standard -->
<rule ref="WordPress-Extra"/>
<!-- Ignore the vendor directory -->
<exclude-pattern>vendor/*</exclude-pattern>
<!-- Ignore the node_modules directory -->
<exclude-pattern>node_modules/*</exclude-pattern>
<!-- Ignore fontawesome directory -->
<exclude-pattern>fonts/fontawesome/*</exclude-pattern>
<!-- Ignore all JavaScript files -->
<exclude-pattern>**/*.js</exclude-pattern>
<!-- Ignore all SCSS files -->
<exclude-pattern>**/*.scss</exclude-pattern>
<!-- Ignore all CSS files -->
<exclude-pattern>**/*.css</exclude-pattern>
</ruleset>