refactor: Cleanup git state - commit all staged changes
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.
This commit is contained in:
36
vendor/phpdocumentor/flyfinder/phpcs.xml.dist
vendored
Normal file
36
vendor/phpdocumentor/flyfinder/phpcs.xml.dist
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
<?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>
|
||||
Reference in New Issue
Block a user