a6e9c08499
- each route will be prefixed by `/plugin/<plugin_name>` - add a new template for plugins rendering - add a live example in the demo_plugin Check out the "Plugin System" documentation for more detail. Related to #143
23 lines
663 B
XML
23 lines
663 B
XML
<?xml version="1.0"?>
|
|
<ruleset name="Shaarli">
|
|
<description>The Shaarli coding standards</description>
|
|
|
|
<file>index.php</file>
|
|
<file>application</file>
|
|
<file>plugins</file>
|
|
<!-- <file>tests</file>-->
|
|
|
|
<exclude-pattern>*/*.css</exclude-pattern>
|
|
<exclude-pattern>*/*.js</exclude-pattern>
|
|
|
|
<arg name="colors"/>
|
|
|
|
<rule ref="PSR12"/>
|
|
<rule ref="Generic.Arrays.DisallowLongArraySyntax"/>
|
|
|
|
<rule ref="PSR1.Files.SideEffects.FoundWithSymbols">
|
|
<!-- index.php bootstraps everything, so yes mixed symbols with side effects -->
|
|
<exclude-pattern>index.php</exclude-pattern>
|
|
<exclude-pattern>plugins/*</exclude-pattern>
|
|
</rule>
|
|
</ruleset>
|