Major refactoring cleanup: - Add new controller architecture (class-controller-*.php) - Add new settings-v2 UI (views/settings-v2/) - Add new CSS architecture (agentic-sidebar.css, tokens) - Add esbuild build pipeline (scripts/build.js, package.json) - Add composer dependencies (vendor/) - Add frontend src directory (assets/js/src/index.jsx) - Add documentation files - Remove old/obsolete files (class-settings.php, old CSS) This commits all pending changes from previous refactoring efforts.
37 lines
1.3 KiB
XML
37 lines
1.3 KiB
XML
<?xml version="1.0"?>
|
|
<ruleset name="phpDocumentor">
|
|
<description>The coding standard for phpDocumentor.</description>
|
|
|
|
<file>src</file>
|
|
<file>tests/unit</file>
|
|
<file>tests/integration</file>
|
|
<arg value="p"/>
|
|
<rule ref="PSR2">
|
|
<include-pattern>*\.php</include-pattern>
|
|
</rule>
|
|
|
|
<rule ref="Doctrine">
|
|
<exclude name="SlevomatCodingStandard.TypeHints.UselessConstantTypeHint.UselessDocComment" />
|
|
</rule>
|
|
|
|
<rule ref="Generic.Files.LineLength.TooLong">
|
|
<exclude-pattern>*/src/Finder.php</exclude-pattern>
|
|
<exclude-pattern>*/src/Specification/SpecificationInterface.php</exclude-pattern>
|
|
<exclude-pattern>*/src/Specification/PrunableInterface.php</exclude-pattern>
|
|
<exclude-pattern>*/src/Specification/CompositeSpecification.php</exclude-pattern>
|
|
<exclude-pattern>*/tests/unit/Specification/GlobTest.php</exclude-pattern>
|
|
</rule>
|
|
|
|
|
|
<rule ref="SlevomatCodingStandard.Classes.SuperfluousInterfaceNaming.SuperfluousSuffix">
|
|
<exclude-pattern>*/src/Specification/SpecificationInterface.php</exclude-pattern>
|
|
<exclude-pattern>*/src/Specification/PrunableInterface.php</exclude-pattern>
|
|
</rule>
|
|
|
|
<rule ref="Generic.Formatting.SpaceAfterNot">
|
|
<properties>
|
|
<property name="spacing" value="0" />
|
|
</properties>
|
|
</rule>
|
|
</ruleset>
|