-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.php-cs-fixer.dist.php
134 lines (131 loc) · 4.21 KB
/
.php-cs-fixer.dist.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
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
<?php
declare(strict_types=1);
use PhpCsFixer\Config;
use PhpCsFixer\Finder;
use PhpCsFixer\Runner\Parallel\ParallelConfigFactory;
$finder = Finder::create()
->in(['src', 'tests'])
->exclude([
'Rules/MagicNumber/data'
])
->notName([
'bootstrap.php',
])
;
return (new Config())
->setParallelConfig(ParallelConfigFactory::detect())
->setRules([
'@Symfony' => true,
'@PHP71Migration' => true,
'concat_space' => ['spacing' => 'one'],
'phpdoc_summary' => false,
'echo_tag_syntax' => true,
'no_useless_else' => true,
'is_null' => true,
'multiline_whitespace_before_semicolons' => true,
'no_null_property_initialization' => true,
'list_syntax' => ['syntax' => 'short'],
'array_syntax' => ['syntax' => 'short'],
'strict_comparison' => true,
'strict_param' => true,
'declare_strict_types' => true,
'ordered_class_elements' => true,
'date_time_immutable' => true,
'no_unused_imports' => true,
'ordered_imports' => ['sort_algorithm' => 'alpha'],
'no_trailing_comma_in_singleline' => true,
'trailing_comma_in_multiline' => true,
'whitespace_after_comma_in_array' => true,
'native_function_invocation' => [
'include' => ['@compiler_optimized']
],
'method_argument_space' => [
'on_multiline' => 'ensure_fully_multiline'
],
'fully_qualified_strict_types' => true,
'no_unreachable_default_argument_value' => true,
'static_lambda' => true,
'no_superfluous_phpdoc_tags' => true,
'single_line_throw' => false,
'general_phpdoc_annotation_remove' => [
'annotations' => ['throws'],
],
'blank_line_before_statement' => [
'statements' => [
'break',
'continue',
'declare',
'do',
'for',
'foreach',
'if',
'include',
'include_once',
'require',
'require_once',
'return',
'switch',
'throw',
'try',
'while',
'yield',
],
],
'blank_line_between_import_groups' => false,
'compact_nullable_type_declaration' => true,
'global_namespace_import' => [
'import_classes' => true,
'import_constants' => true,
'import_functions' => true,
],
'logical_operators' => true,
'native_constant_invocation' => false,
'no_alternative_syntax' => true,
'no_unset_cast' => true,
'no_useless_return' => true,
'nullable_type_declaration_for_default_null_value' => true,
'ordered_interfaces' => true,
'phpdoc_align' => [
'align' => 'left',
],
'void_return' => true,
'php_unit_dedicate_assert' => true,
'php_unit_method_casing' => [
'case' => 'snake_case',
],
'php_unit_set_up_tear_down_visibility' => true,
'php_unit_strict' => [
'assertions' => [
'assertAttributeNotEquals',
'assertAttributeEquals',
'assertNotEquals',
// 'assertEquals' // Note: excluded due to assertEquals usage with dates comparison
],
],
'phpdoc_order_by_value' => true,
'php_unit_test_annotation' => [
'style' => 'prefix',
],
'php_unit_test_case_static_method_calls' => [
'call_type' => 'self',
],
'phpdoc_no_empty_return' => true,
'phpdoc_to_comment' => false,
'phpdoc_order' => true,
'self_static_accessor' => true,
'yoda_style' => [
'equal' => false,
'identical' => false,
'less_and_greater' => false,
],
'class_attributes_separation' => [
'elements' => [
'method' => 'one',
'property' => 'one',
'trait_import' => 'only_if_meta',
],
],
'types_spaces' => false,
])
->setFinder($finder)
;