-
Notifications
You must be signed in to change notification settings - Fork 10
/
.php-cs-fixer.php
75 lines (72 loc) · 1.69 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
<?php
declare(strict_types=1);
$finder = PhpCsFixer\Finder::create()
->in(__DIR__ . "/src");
return (new PhpCsFixer\Config)
->setRiskyAllowed(true)
->setRules([
"align_multiline_comment" => [
"comment_type" => "phpdocs_only"
],
"array_indentation" => true,
"array_syntax" => [
"syntax" => "short"
],
"blank_line_after_namespace" => true,
"blank_line_after_opening_tag" => true,
"blank_line_before_statement" => [
"statements" => [
"declare"
]
],
"cast_spaces" => [
"space" => "single"
],
"concat_space" => [
"spacing" => "one"
],
"declare_strict_types" => true,
"elseif" => true,
"global_namespace_import" => [
"import_constants" => true,
"import_functions" => true,
"import_classes" => true,
],
"indentation_type" => true,
"native_function_invocation" => [
"scope" => "namespaced",
"include" => ["@all"],
],
"no_closing_tag" => true,
"no_empty_phpdoc" => true,
"no_extra_blank_lines" => true,
"no_superfluous_phpdoc_tags" => [
"allow_mixed" => true,
],
"no_trailing_whitespace" => true,
"no_trailing_whitespace_in_comment" => true,
"no_whitespace_in_blank_line" => true,
"no_unused_imports" => true,
"ordered_imports" => [
"imports_order" => [
"class",
"function",
"const",
],
"sort_algorithm" => "alpha"
],
"phpdoc_trim" => true,
"phpdoc_trim_consecutive_blank_line_separation" => true,
"single_import_per_statement" => true,
"strict_param" => true,
"return_assignment" => true,
"return_type_declaration" => [
"space_before" => "one"
],
"function_declaration" => [
"closure_function_spacing" => "one"
]
])
->setFinder($finder)
->setIndent("\t")
->setLineEnding("\n");