-
Notifications
You must be signed in to change notification settings - Fork 0
/
ecs.php
40 lines (34 loc) · 1.04 KB
/
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
37
38
39
40
<?php
/*
* This file is part of the Headsnet CarbonClock package.
*
* (c) Headstrong Internet Services Ltd 2022
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
use PhpCsFixer\Fixer\PhpUnit\PhpUnitMethodCasingFixer;
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__ . '/test',
]);
$ecsConfig->sets([
SetList::SPACES,
SetList::ARRAY,
SetList::DOCBLOCK,
SetList::NAMESPACES,
SetList::CONTROL_STRUCTURES,
SetList::CLEAN_CODE,
SetList::PSR_12
]);
$ecsConfig->ruleWithConfiguration(PhpUnitMethodCasingFixer::class, [
'case' => 'snake_case',
]);
};