1
0
Fork 0
mirror of synced 2024-06-15 01:04:51 +12:00

ci: fix php sniffer configuration

This commit is contained in:
Torsten Dittmann 2022-05-31 17:16:27 +02:00
parent 02bc2f6390
commit 981e82eb45
2 changed files with 5 additions and 5 deletions

View file

@ -71,4 +71,3 @@ return [ // List of publicly visible scopes
'description' => 'Access to read your project\'s health status',
],
];

View file

@ -1,9 +1,10 @@
<?xml version="1.0"?>
<ruleset name="Custom Standard" namespace="MyProject\CS\Standard">
<description>A custom coding standard</description>
<ruleset name="Appwrite Standard" namespace="Appwrite">
<rule ref="PSR12"/>
<file>./app</file>
<file>./src</file>
<file>./tests</file>
<ini name="memory_limit" value="512M"/>
<rule ref="PSR12"/>
<ini name="memory_limit" value="4096M"/>
<!-- Exclude SDK's for performance reasons -->
<exclude-pattern>./app/sdks</exclude-pattern>
</ruleset>