19 lines
415 B
PHP
19 lines
415 B
PHP
<?php
|
|
|
|
use craft\ecs\SetList;
|
|
use Symplify\EasyCodingStandard\Config\ECSConfig;
|
|
|
|
return static function(ECSConfig $ecsConfig): void {
|
|
$ecsConfig->paths([
|
|
__DIR__ . '/src',
|
|
__DIR__ . '/tests',
|
|
__FILE__,
|
|
]);
|
|
$ecsConfig->skip([
|
|
__DIR__ . '/src/Consts.php',
|
|
__DIR__ . '/src/enums',
|
|
]);
|
|
$ecsConfig->parallel();
|
|
$ecsConfig->sets([SetList::CRAFT_CMS_4]);
|
|
};
|