-
Notifications
You must be signed in to change notification settings - Fork 1
/
.php-cs-fixer.php
104 lines (99 loc) · 3.04 KB
/
.php-cs-fixer.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
<?php
// SPDX-License-Identifier: BSD-3-Clause
declare(strict_types=1);
return (new PhpCsFixer\Config())
->setFinder(
(new PhpCsFixer\Finder())
->in(__DIR__)
->append([__FILE__])
->notPath('src/DependencyInjection/Configuration.php')
)
->setRiskyAllowed(true)
->setRules([
// base presets
'@PER-CS' => true,
'@PhpCsFixer' => true,
'@Symfony' => true,
'@PHP81Migration' => true,
// risky presets
'@PER-CS:risky' => true,
'@PhpCsFixer:risky' => true,
'@Symfony:risky' => true,
'@PHP80Migration:risky' => true,
// presets tuning
'blank_line_after_opening_tag' => false,
'blank_line_before_statement' => [
'statements' => ['case', 'default', 'declare', 'return', 'throw', 'try'],
],
'comment_to_phpdoc' => [
'ignored_tags' => [
'phan-suppress-current-line',
'phan-suppress-next-line',
'see',
'todo',
],
],
'linebreak_after_opening_tag' => false,
'method_argument_space' => [
'attribute_placement' => 'standalone',
'on_multiline' => 'ignore',
],
'multiline_whitespace_before_semicolons' => [
'strategy' => 'new_line_for_chained_calls',
],
'no_extra_blank_lines' => [
'tokens' => [
'break',
'case',
'continue',
'curly_brace_block',
'default',
'extra',
'parenthesis_brace_block',
'return',
'square_brace_block',
'switch',
'throw',
],
],
'no_superfluous_phpdoc_tags' => [
'allow_mixed' => true,
'allow_unused_params' => true,
],
'ordered_class_elements' => false,
'ordered_imports' => [
'imports_order' => [
'const',
'class',
'function',
],
],
'phpdoc_separation' => false,
'phpdoc_summary' => false,
'phpdoc_to_comment' => false,
'phpdoc_types_order' => [
'null_adjustment' => 'always_last',
'sort_algorithm' => 'none',
],
'single_line_comment_style' => [
'comment_types' => [
'asterisk',
],
],
'single_line_throw' => false,
'yoda_style' => false,
// no-preset rules
'date_time_immutable' => true,
'final_class' => true,
'header_comment' => [
'header' => 'SPDX-License-Identifier: BSD-3-Clause',
'location' => 'after_open',
'separate' => 'bottom',
],
'nullable_type_declaration_for_default_null_value' => true,
'self_static_accessor' => true,
'simplified_null_return' => true,
'single_line_empty_body' => true,
'static_lambda' => true,
])
;