forked from easy-coding-standard/easy-coding-standard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsymfony.neon
90 lines (88 loc) · 4.56 KB
/
symfony.neon
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
80
81
82
83
84
85
86
87
88
89
90
includes:
- psr2.neon
checkers:
- PhpCsFixer\Fixer\PhpTag\BlankLineAfterOpeningTagFixer
PhpCsFixer\Fixer\Operator\ConcatSpaceFixer:
spacing: none
- PhpCsFixer\Fixer\Operator\NewWithBracesFixer
- PhpCsFixer\Fixer\Phpdoc\PhpdocAlignFixer
- PhpCsFixer\Fixer\Operator\UnaryOperatorSpacesFixer
PhpCsFixer\Fixer\Operator\BinaryOperatorSpacesFixer:
align_double_arrow: false
align_equals: false
- PhpCsFixer\Fixer\Whitespace\BlankLineBeforeStatementFixer
- PhpCsFixer\Fixer\CastNotation\CastSpacesFixer
- PhpCsFixer\Fixer\LanguageConstruct\DeclareEqualNormalizeFixer
- PhpCsFixer\Fixer\FunctionNotation\FunctionTypehintSpaceFixer
- PhpCsFixer\Fixer\Comment\HashToSlashCommentFixer
- PhpCsFixer\Fixer\ControlStructure\IncludeFixer
- PhpCsFixer\Fixer\CastNotation\LowercaseCastFixer
- PhpCsFixer\Fixer\ClassNotation\MethodSeparationFixer
- PhpCsFixer\Fixer\Casing\NativeFunctionCasingFixer
- PhpCsFixer\Fixer\ClassNotation\NoBlankLinesAfterClassOpeningFixer
- PhpCsFixer\Fixer\Phpdoc\NoBlankLinesAfterPhpdocFixer
- PhpCsFixer\Fixer\Comment\NoEmptyCommentFixer
- PhpCsFixer\Fixer\Phpdoc\NoEmptyPhpdocFixer
- PhpCsFixer\Fixer\Semicolon\NoEmptyStatementFixer
PhpCsFixer\Fixer\Whitespace\NoExtraConsecutiveBlankLinesFixer:
- curly_brace_block
- extra
- parenthesis_brace_block
- square_brace_block
- throw
- use
- PhpCsFixer\Fixer\NamespaceNotation\NoLeadingNamespaceWhitespaceFixer
- PhpCsFixer\Fixer\Alias\NoMixedEchoPrintFixer
- PhpCsFixer\Fixer\ArrayNotation\NoMultilineWhitespaceAroundDoubleArrowFixer
- PhpCsFixer\Fixer\CastNotation\NoShortBoolCastFixer
- PhpCsFixer\Fixer\Semicolon\NoSinglelineWhitespaceBeforeSemicolonsFixer
- PhpCsFixer\Fixer\Whitespace\NoSpacesAroundOffsetFixer
- PhpCsFixer\Fixer\ControlStructure\NoTrailingCommaInListCallFixer
- PhpCsFixer\Fixer\ArrayNotation\NoTrailingCommaInSinglelineArrayFixer
- PhpCsFixer\Fixer\ArrayNotation\TrailingCommaInMultilineArrayFixer
- PhpCsFixer\Fixer\ControlStructure\NoUnneededControlParenthesesFixer
- PhpCsFixer\Fixer\ArrayNotation\NoWhitespaceBeforeCommaInArrayFixer
- PhpCsFixer\Fixer\Whitespace\NoWhitespaceInBlankLineFixer
- PhpCsFixer\Fixer\ArrayNotation\NormalizeIndexBraceFixer
- PhpCsFixer\Fixer\Operator\ObjectOperatorWithoutWhitespaceFixer
- PhpCsFixer\Fixer\Phpdoc\PhpdocAnnotationWithoutDotFixer
- PhpCsFixer\Fixer\Phpdoc\PhpdocIndentFixer
- PhpCsFixer\Fixer\Phpdoc\PhpdocInlineTagFixer
- PhpCsFixer\Fixer\Phpdoc\PhpdocNoAccessFixer
- PhpCsFixer\Fixer\Phpdoc\PhpdocNoEmptyReturnFixer
- PhpCsFixer\Fixer\Phpdoc\PhpdocNoPackageFixer
- PhpCsFixer\Fixer\Phpdoc\PhpdocNoUselessInheritdocFixer
- PhpCsFixer\Fixer\Phpdoc\PhpdocScalarFixer
- PhpCsFixer\Fixer\Phpdoc\PhpdocSingleLineVarSpacingFixer
- PhpCsFixer\Fixer\Phpdoc\PhpdocSummaryFixer
- PhpCsFixer\Fixer\Phpdoc\PhpdocToCommentFixer
- PhpCsFixer\Fixer\Phpdoc\PhpdocTrimFixer
- PhpCsFixer\Fixer\Phpdoc\PhpdocTypesFixer
- PhpCsFixer\Fixer\Phpdoc\PhpdocVarWithoutNameFixer
- PhpCsFixer\Fixer\Operator\PreIncrementFixer
- PhpCsFixer\Fixer\FunctionNotation\ReturnTypeDeclarationFixer
- PhpCsFixer\Fixer\ClassNotation\SelfAccessorFixer
- PhpCsFixer\Fixer\CastNotation\ShortScalarCastFixer
- PhpCsFixer\Fixer\StringNotation\SingleQuoteFixer
- PhpCsFixer\Fixer\Semicolon\SpaceAfterSemicolonFixer
- PhpCsFixer\Fixer\Operator\StandardizeNotEqualsFixer
- PhpCsFixer\Fixer\Operator\TernaryOperatorSpacesFixer
- PhpCsFixer\Fixer\ArrayNotation\TrimArraySpacesFixer
- PhpCsFixer\Fixer\ArrayNotation\WhitespaceAfterCommaInArrayFixer
PhpCsFixer\Fixer\ClassNotation\ClassDefinitionFixer:
singleLine: true
- PhpCsFixer\Fixer\Casing\MagicConstantCasingFixer
- PhpCsFixer\Fixer\FunctionNotation\MethodArgumentSpaceFixer
PhpCsFixer\Fixer\Alias\NoMixedEchoPrintFixer:
use: echo
- PhpCsFixer\Fixer\Import\NoUnusedImportsFixer
- PhpCsFixer\Fixer\PhpUnit\PhpUnitFqcnAnnotationFixer
- PhpCsFixer\Fixer\Phpdoc\PhpdocNoAliasTagFixer
- PhpCsFixer\Fixer\ClassNotation\ProtectedToPrivateFixer
- PhpCsFixer\Fixer\NamespaceNotation\SingleBlankLineBeforeNamespaceFixer
- PhpCsFixer\Fixer\ClassNotation\SingleClassElementPerStatementFixer
# new since PHP-CS-Fixer 2.6
- PhpCsFixer\Fixer\ControlStructure\NoUnneededCurlyBracesFixer
- PhpCsFixer\Fixer\ClassNotation\NoUnneededFinalMethodFixer
- PhpCsFixer\Fixer\Semicolon\SemicolonAfterInstructionFixer
- PhpCsFixer\Fixer\ControlStructure\YodaStyleFixer