-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathecs.php
More file actions
24 lines (20 loc) · 640 Bytes
/
Copy pathecs.php
File metadata and controls
24 lines (20 loc) · 640 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
declare(strict_types=1);
use PhpCsFixer\Fixer\Whitespace\HeredocIndentationFixer;
use Symplify\CodingStandard\Fixer\Commenting\RemoveDeadVarThisFixer;
/** @var \Symplify\EasyCodingStandard\Configuration\ECSConfigBuilder $builder */
$builder = require __DIR__ . '/vendor/php-forge/coding-standard/src/ecs-83.php';
return $builder
->withPaths(
[
__DIR__ . '/src',
__DIR__ . '/tests',
],
)
->withSkip(
[
__DIR__ . '/src/views',
HeredocIndentationFixer::class,
RemoveDeadVarThisFixer::class => [__DIR__ . '/src/views'],
],
);