forked from erdnaxelaweb/ibexadesignintegration
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathecs.php
More file actions
79 lines (71 loc) · 3.06 KB
/
ecs.php
File metadata and controls
79 lines (71 loc) · 3.06 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
/*
* staticfakedesignbundle.
*
* @package DesignBundle
*
* @author florian
* @copyright 2023-present Florian ALEXANDRE
* @license https://github.com/erdnaxelaweb/staticfakedesign/blob/main/LICENSE
*/
declare(strict_types=1);
use PHP_CodeSniffer\Standards\Generic\Sniffs\Arrays\DisallowLongArraySyntaxSniff;
use PhpCsFixer\Fixer\ArrayNotation\ArraySyntaxFixer;
use PhpCsFixer\Fixer\ClassNotation\OrderedClassElementsFixer;
use PhpCsFixer\Fixer\Comment\HeaderCommentFixer;
use PhpCsFixer\Fixer\FunctionNotation\PhpdocToPropertyTypeFixer;
use PhpCsFixer\Fixer\Import\FullyQualifiedStrictTypesFixer;
use PhpCsFixer\Fixer\Import\NoUnusedImportsFixer;
use PhpCsFixer\Fixer\Import\OrderedImportsFixer;
use PhpCsFixer\Fixer\LanguageConstruct\DeclareEqualNormalizeFixer;
use PhpCsFixer\Fixer\Phpdoc\PhpdocAlignFixer;
use PhpCsFixer\Fixer\PhpTag\BlankLineAfterOpeningTagFixer;
use PhpCsFixer\Fixer\PhpUnit\PhpUnitStrictFixer;
use PhpCsFixer\Fixer\Strict\DeclareStrictTypesFixer;
use PhpCsFixer\Fixer\Whitespace\ArrayIndentationFixer;
use Symplify\EasyCodingStandard\Config\ECSConfig;
use Symplify\EasyCodingStandard\ValueObject\Set\SetList;
return function (ECSConfig $ecsConfig): void {
$ecsConfig->paths([
__DIR__ . '/bundle',
__DIR__ . '/lib',
__DIR__ . '/tests',
]);
// Individual rules for more specific control
$ecsConfig->rules([
NoUnusedImportsFixer::class,
DeclareStrictTypesFixer::class,
OrderedImportsFixer::class,
ArrayIndentationFixer::class,
OrderedClassElementsFixer::class,
DisallowLongArraySyntaxSniff::class,
FullyQualifiedStrictTypesFixer::class,
PhpdocToPropertyTypeFixer::class,
]);
$ecsConfig->ruleWithConfiguration(ArraySyntaxFixer::class, [
'syntax' => 'short',
]);
$ecsConfig->ruleWithConfiguration(HeaderCommentFixer::class, [
'header' => "Ibexa Design Bundle.\n\n@author Florian ALEXANDRE\n@copyright 2023-present Florian ALEXANDRE\n@license https://github.com/erdnaxelaweb/ibexadesignintegration/blob/main/LICENSE",
'comment_type' => 'comment',
'location' => 'after_declare_strict',
'separate' => 'both',
]);
// Rule sets
$ecsConfig->sets([
SetList::CLEAN_CODE,
SetList::PSR_12,
SetList::ARRAY,
SetList::DOCBLOCK,
SetList::NAMESPACES,
SetList::COMMENTS,
SetList::STRICT,
]);
// Skip specific rules that might be too opinionated
$ecsConfig->skip([
PhpdocAlignFixer::class => null,
PhpUnitStrictFixer::class => [
__DIR__ . '/tests/*',
],
]);
};