blob: bf622ea0cdbffbfba11d012a55cf21fe3c51d4ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
declare(strict_types=1);
use Symplify\EasyCodingStandard\Config\ECSConfig;
use Symplify\EasyCodingStandard\ValueObject\Set\SetList;
return function (ECSConfig $ecsConfig): void {
$ecsConfig->paths([
__DIR__ . '/src',
]);
$ecsConfig->sets([
SetList::COMMON,
SetList::CLEAN_CODE,
SetList::PSR_12,
]);
};
|