-
Notifications
You must be signed in to change notification settings - Fork 4
/
ecs.php
36 lines (30 loc) · 950 Bytes
/
ecs.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
/*
* This file is part of the Symfony HeadsnetDomainEventsBundle.
*
* (c) Headstrong Internet Services Ltd 2020
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
use Symplify\EasyCodingStandard\Config\ECSConfig;
use Symplify\EasyCodingStandard\ValueObject\Option;
use Symplify\EasyCodingStandard\ValueObject\Set\SetList;
return static function (ECSConfig $ecsConfig): void
{
$parameters = $ecsConfig->parameters();
$parameters->set(Option::PARALLEL, true);
$ecsConfig->paths([
__DIR__ . '/src',
__DIR__ . '/tests',
]);
$ecsConfig->skip([
__DIR__ . '/src/Kernel.php', // Created during the Travis build!
__DIR__ . '/tests/bootstrap.php', // Created during the Travis build!
]);
$ecsConfig->sets([
SetList::CLEAN_CODE,
SetList::PSR_12,
]);
};