-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheasy-coding-standard.yml
141 lines (141 loc) · 7.51 KB
/
easy-coding-standard.yml
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
services:
PhpCsFixer\Fixer\Alias\EregToPregFixer: {}
PhpCsFixer\Fixer\Alias\NoAliasFunctionsFixer: {}
PhpCsFixer\Fixer\Alias\PowToExponentiationFixer: {}
PhpCsFixer\Fixer\Alias\NoMixedEchoPrintFixer:
use: echo
PhpCsFixer\Fixer\ArrayNotation\ArraySyntaxFixer:
syntax: short
PhpCsFixer\Fixer\ArrayNotation\NoMultilineWhitespaceAroundDoubleArrowFixer: {}
PhpCsFixer\Fixer\ArrayNotation\NormalizeIndexBraceFixer: {}
PhpCsFixer\Fixer\ArrayNotation\NoTrailingCommaInSinglelineArrayFixer: {}
PhpCsFixer\Fixer\ArrayNotation\NoWhitespaceBeforeCommaInArrayFixer: {}
PhpCsFixer\Fixer\ArrayNotation\TrailingCommaInMultilineArrayFixer: {}
PhpCsFixer\Fixer\ArrayNotation\TrimArraySpacesFixer: {}
PhpCsFixer\Fixer\ArrayNotation\WhitespaceAfterCommaInArrayFixer: {}
PhpCsFixer\Fixer\Basic\BracesFixer:
allow_single_line_closure: true
PhpCsFixer\Fixer\Basic\EncodingFixer: {}
PhpCsFixer\Fixer\Basic\NonPrintableCharacterFixer: {}
PhpCsFixer\Fixer\Casing\LowercaseConstantsFixer: {}
PhpCsFixer\Fixer\Casing\LowercaseKeywordsFixer: {}
PhpCsFixer\Fixer\Casing\NativeFunctionCasingFixer: {}
PhpCsFixer\Fixer\Casing\MagicConstantCasingFixer: {}
PhpCsFixer\Fixer\CastNotation\CastSpacesFixer: {}
PhpCsFixer\Fixer\CastNotation\LowercaseCastFixer: {}
PhpCsFixer\Fixer\CastNotation\ModernizeTypesCastingFixer: {}
PhpCsFixer\Fixer\CastNotation\NoShortBoolCastFixer: {}
PhpCsFixer\Fixer\CastNotation\ShortScalarCastFixer: {}
PhpCsFixer\Fixer\ClassNotation\ClassDefinitionFixer:
singleItemSingleLine: true
multiLineExtendsEachSingleLine: true
PhpCsFixer\Fixer\ClassNotation\MethodSeparationFixer: {}
PhpCsFixer\Fixer\ClassNotation\NoBlankLinesAfterClassOpeningFixer: {}
PhpCsFixer\Fixer\ClassNotation\NoNullPropertyInitializationFixer: {}
PhpCsFixer\Fixer\ClassNotation\NoPhp4ConstructorFixer: {}
PhpCsFixer\Fixer\ClassNotation\NoUnneededFinalMethodFixer: {}
PhpCsFixer\Fixer\ClassNotation\OrderedClassElementsFixer: {}
PhpCsFixer\Fixer\ClassNotation\ProtectedToPrivateFixer: {}
PhpCsFixer\Fixer\ClassNotation\SelfAccessorFixer: {}
PhpCsFixer\Fixer\ClassNotation\SingleClassElementPerStatementFixer: {}
PhpCsFixer\Fixer\ClassNotation\VisibilityRequiredFixer: {}
PhpCsFixer\Fixer\Comment\HashToSlashCommentFixer: {}
PhpCsFixer\Fixer\Comment\NoEmptyCommentFixer: {}
PhpCsFixer\Fixer\Comment\NoTrailingWhitespaceInCommentFixer: {}
PhpCsFixer\Fixer\Comment\SingleLineCommentStyleFixer:
comment_types: ['hash']
PhpCsFixer\Fixer\ControlStructure\ElseifFixer: {}
PhpCsFixer\Fixer\ControlStructure\IncludeFixer: {}
PhpCsFixer\Fixer\ControlStructure\NoBreakCommentFixer: {}
PhpCsFixer\Fixer\ControlStructure\NoSuperfluousElseifFixer: {}
PhpCsFixer\Fixer\ControlStructure\NoTrailingCommaInListCallFixer: {}
PhpCsFixer\Fixer\ControlStructure\NoUnneededControlParenthesesFixer: {}
PhpCsFixer\Fixer\ControlStructure\NoUnneededCurlyBracesFixer: {}
PhpCsFixer\Fixer\ControlStructure\NoUselessElseFixer: {}
PhpCsFixer\Fixer\ControlStructure\SwitchCaseSemicolonToColonFixer: {}
PhpCsFixer\Fixer\ControlStructure\SwitchCaseSpaceFixer: {}
PhpCsFixer\Fixer\FunctionNotation\FunctionDeclarationFixer: {}
PhpCsFixer\Fixer\FunctionNotation\FunctionTypehintSpaceFixer: {}
PhpCsFixer\Fixer\FunctionNotation\MethodArgumentSpaceFixer: {}
PhpCsFixer\Fixer\FunctionNotation\NoSpacesAfterFunctionNameFixer: {}
PhpCsFixer\Fixer\FunctionNotation\ReturnTypeDeclarationFixer: {}
PhpCsFixer\Fixer\Import\NoLeadingImportSlashFixer: {}
PhpCsFixer\Fixer\Import\NoUnusedImportsFixer: {}
PhpCsFixer\Fixer\Import\OrderedImportsFixer: {}
PhpCsFixer\Fixer\Import\SingleImportPerStatementFixer: {}
PhpCsFixer\Fixer\Import\SingleLineAfterImportsFixer: {}
PhpCsFixer\Fixer\LanguageConstruct\CombineConsecutiveIssetsFixer: {}
PhpCsFixer\Fixer\LanguageConstruct\CombineConsecutiveUnsetsFixer: {}
PhpCsFixer\Fixer\LanguageConstruct\DeclareEqualNormalizeFixer: {}
PhpCsFixer\Fixer\LanguageConstruct\DirConstantFixer: {}
PhpCsFixer\Fixer\LanguageConstruct\FunctionToConstantFixer: {}
PhpCsFixer\Fixer\LanguageConstruct\IsNullFixer: {}
PhpCsFixer\Fixer\LanguageConstruct\SilencedDeprecationErrorFixer: {}
PhpCsFixer\Fixer\ListNotation\ListSyntaxFixer:
syntax: short
PhpCsFixer\Fixer\NamespaceNotation\BlankLineAfterNamespaceFixer: {}
PhpCsFixer\Fixer\NamespaceNotation\NoLeadingNamespaceWhitespaceFixer: {}
PhpCsFixer\Fixer\NamespaceNotation\SingleBlankLineBeforeNamespaceFixer: {}
PhpCsFixer\Fixer\Naming\NoHomoglyphNamesFixer: {}
PhpCsFixer\Fixer\Operator\BinaryOperatorSpacesFixer:
align_double_arrow: false
align_equals: false
PhpCsFixer\Fixer\Operator\ConcatSpaceFixer:
spacing: one
PhpCsFixer\Fixer\Operator\NewWithBracesFixer: {}
PhpCsFixer\Fixer\Operator\ObjectOperatorWithoutWhitespaceFixer: {}
PhpCsFixer\Fixer\Operator\PreIncrementFixer: {}
PhpCsFixer\Fixer\Operator\StandardizeNotEqualsFixer: {}
PhpCsFixer\Fixer\Operator\TernaryOperatorSpacesFixer: {}
PhpCsFixer\Fixer\Operator\TernaryToNullCoalescingFixer: {}
PhpCsFixer\Fixer\Operator\UnaryOperatorSpacesFixer: {}
PhpCsFixer\Fixer\Phpdoc\NoBlankLinesAfterPhpdocFixer: {}
PhpCsFixer\Fixer\Phpdoc\NoEmptyPhpdocFixer: {}
PhpCsFixer\Fixer\Phpdoc\PhpdocIndentFixer: {}
PhpCsFixer\Fixer\Phpdoc\PhpdocInlineTagFixer: {}
PhpCsFixer\Fixer\Phpdoc\PhpdocNoAccessFixer: {}
PhpCsFixer\Fixer\Phpdoc\PhpdocNoAliasTagFixer: {}
PhpCsFixer\Fixer\Phpdoc\PhpdocNoEmptyReturnFixer: {}
PhpCsFixer\Fixer\Phpdoc\PhpdocNoPackageFixer: {}
PhpCsFixer\Fixer\Phpdoc\PhpdocNoUselessInheritdocFixer: {}
PhpCsFixer\Fixer\Phpdoc\PhpdocReturnSelfReferenceFixer: {}
PhpCsFixer\Fixer\Phpdoc\PhpdocScalarFixer: {}
PhpCsFixer\Fixer\Phpdoc\PhpdocSeparationFixer: {}
PhpCsFixer\Fixer\Phpdoc\PhpdocSingleLineVarSpacingFixer: {}
PhpCsFixer\Fixer\Phpdoc\PhpdocTrimFixer: {}
PhpCsFixer\Fixer\Phpdoc\PhpdocTypesFixer: {}
PhpCsFixer\Fixer\Phpdoc\PhpdocTypesOrderFixer:
null_adjustment: always_last
sort_algorithm: none
PhpCsFixer\Fixer\Phpdoc\PhpdocVarWithoutNameFixer: {}
PhpCsFixer\Fixer\PhpTag\BlankLineAfterOpeningTagFixer: {}
PhpCsFixer\Fixer\PhpTag\FullOpeningTagFixer: {}
PhpCsFixer\Fixer\PhpTag\NoClosingTagFixer: {}
PhpCsFixer\Fixer\PhpUnit\PhpUnitDedicateAssertFixer: {}
PhpCsFixer\Fixer\PhpUnit\PhpUnitFqcnAnnotationFixer: {}
PhpCsFixer\Fixer\Semicolon\NoEmptyStatementFixer: {}
PhpCsFixer\Fixer\Semicolon\NoSinglelineWhitespaceBeforeSemicolonsFixer: {}
PhpCsFixer\Fixer\Semicolon\SpaceAfterSemicolonFixer: {}
PhpCsFixer\Fixer\Strict\DeclareStrictTypesFixer: {}
PhpCsFixer\Fixer\StringNotation\SingleQuoteFixer: {}
PhpCsFixer\Fixer\Whitespace\BlankLineBeforeStatementFixer: {}
PhpCsFixer\Fixer\Whitespace\IndentationTypeFixer: {}
PhpCsFixer\Fixer\Whitespace\LineEndingFixer: {}
PhpCsFixer\Fixer\Whitespace\NoExtraConsecutiveBlankLinesFixer:
- break
- case
- continue
- curly_brace_block
- default
- extra
- parenthesis_brace_block
- return
- square_brace_block
- switch
- throw
- use
PhpCsFixer\Fixer\Whitespace\NoSpacesAroundOffsetFixer: {}
PhpCsFixer\Fixer\Whitespace\NoSpacesInsideParenthesisFixer: {}
PhpCsFixer\Fixer\Whitespace\NoTrailingWhitespaceFixer: {}
PhpCsFixer\Fixer\Whitespace\NoWhitespaceInBlankLineFixer: {}
PhpCsFixer\Fixer\Whitespace\SingleBlankLineAtEofFixer: {}