-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml.dist
More file actions
23 lines (19 loc) · 747 Bytes
/
Copy pathphpcs.xml.dist
File metadata and controls
23 lines (19 loc) · 747 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="freemius-stubs">
<description>Coding standards for the files this repository writes by hand.</description>
<file>bin</file>
<file>configs</file>
<file>tests</file>
<!--
The .stub files are generated by php-stubs/generator and rewritten wholesale by
`composer generate`, so linting them would report on output nobody edits. source/ is the
upstream copy, and vendor/ is not ours either.
-->
<exclude-pattern>*/source/*</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
<exclude-pattern>*.stub</exclude-pattern>
<arg name="extensions" value="php"/>
<arg name="colors"/>
<arg value="ps"/>
<rule ref="PSR12"/>
</ruleset>