Add neutral diagnostic framework for future reporting modules: - DiagnosticReporterInterface, Registry, Manager, PayloadSanitizer - Laravel exception hook in bootstrap/app.php - Module permission declarations (requires_permissions in module.json) - Core diagnostic report points (module boot/install/update failures) - Module documentation update (moduldoku.md) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
21 lines
No EOL
548 B
XML
21 lines
No EOL
548 B
XML
<?xml version="1.0"?>
|
|
<ruleset name="Expressive Skeleton coding standard">
|
|
<description>Expressive Skeleton coding standard</description>
|
|
|
|
<!-- display progress -->
|
|
<arg value="p"/>
|
|
<arg name="colors"/>
|
|
|
|
<!-- inherit rules from: -->
|
|
<rule ref="PSR2"/>
|
|
|
|
<!-- Paths to check -->
|
|
<file>src</file>
|
|
|
|
<rule ref="Generic.Files.LineLength">
|
|
<properties>
|
|
<property name="lineLimit" value="300"/>
|
|
<property name="absoluteLineLimit" value="500"/>
|
|
</properties>
|
|
</rule>
|
|
</ruleset> |