1
0
Fork 0
mirror of synced 2024-06-01 18:39:57 +12:00
appwrite/phpcs.xml

14 lines
467 B
XML
Raw Normal View History

2022-06-01 03:09:45 +12:00
<?xml version="1.0"?>
2022-06-01 03:16:27 +12:00
<ruleset name="Appwrite Standard" namespace="Appwrite">
<rule ref="PSR12"/>
2022-06-01 03:09:45 +12:00
<file>./app</file>
<file>./src</file>
<file>./tests</file>
2022-06-01 03:16:27 +12:00
<ini name="memory_limit" value="4096M"/>
<!-- Exclude SDK's for performance reasons -->
<exclude-pattern>./app/sdks</exclude-pattern>
2022-06-01 03:36:38 +12:00
<!-- Ignore max line width -->
<rule ref="Generic.Files.LineLength">
<exclude-pattern>*</exclude-pattern>
</rule>
2022-06-01 03:09:45 +12:00
</ruleset>