feat(monorepo): migrate to typescript monorepo

This commit is contained in:
2025-11-07 17:09:29 +02:00
committed by BernardNganduDev
parent 3e09956f05
commit 075a388ccb
745 changed files with 2341 additions and 5082 deletions
+30
View File
@@ -0,0 +1,30 @@
<?php
declare(strict_types=1);
use PhpCsFixer\Fixer\FunctionNotation\MethodArgumentSpaceFixer;
use PhpCsFixer\Fixer\Import\NoUnusedImportsFixer;
use PhpCsFixer\Fixer\Operator\ConcatSpaceFixer;
use Symplify\EasyCodingStandard\Config\ECSConfig;
return ECSConfig::configure()
->withPaths([
__DIR__ . '/src',
__DIR__ . '/tests',
])
->withRules([
NoUnusedImportsFixer::class,
])
->withConfiguredRule(MethodArgumentSpaceFixer::class, [
'on_multiline' => 'ensure_fully_multiline',
'attribute_placement' => 'same_line'
])
->withSkip([
ConcatSpaceFixer::class
])
->withPreparedSets(
psr12: true,
common: true,
cleanCode: true,
);