-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpcs.xml
21 lines (20 loc) · 951 Bytes
/
phpcs.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0"?>
<ruleset name="App">
<config name="installed_paths" value="../../cakephp/cakephp-codesniffer"/>
<rule ref="Generic.Files.LineLength">
<exclude-pattern>templates/email/text/service_change.php</exclude-pattern>
<exclude-pattern>templates/Pages/home.php</exclude-pattern>
<exclude-pattern>src/ContractPDF.php</exclude-pattern>
<exclude-pattern>src/CustomerPDF.php</exclude-pattern>
<exclude-pattern>config/Migrations/20221211110347_AddHaveContractVersionsAndHaveEquipmentsAndHaveIpAddressesAndHaveRadiusAccountsToServiceTypes.php</exclude-pattern>
</rule>
<rule ref="CakePHP"/>
<rule ref="SlevomatCodingStandard.TypeHints.ReturnTypeHint.MissingNativeTypeHint">
<exclude-pattern>*/src/Controller/*</exclude-pattern>
</rule>
<file>src/</file>
<file>templates/</file>
<file>tests/</file>
<file>plugins/</file>
<file>config/</file>
</ruleset>