-
Notifications
You must be signed in to change notification settings - Fork 0
/
.php_cs.dist
71 lines (70 loc) · 2.77 KB
/
.php_cs.dist
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
<?php
return PhpCsFixer\Config::create()
->setRiskyAllowed(true)
->setRules([
'array_syntax' => ['syntax' => 'short'],
'declare_strict_types' => true,
'no_useless_return' => true,
'logical_operators' => true,
'lowercase_constants' => true,
'new_with_braces' => false,
'align_multiline_comment' => true,
'blank_line_after_opening_tag' => false,
'blank_line_before_return' => true,
'blank_line_before_statement' => true,
'class_attributes_separation' => ['elements' => ['method']],
'compact_nullable_typehint' => true,
'concat_space' => ['spacing' => 'one'],
'function_typehint_space' => true,
'is_null' => true,
'yoda_style' => true,
'lowercase_keywords' => true,
'lowercase_static_reference' => true,
'method_argument_space' => true,
'modernize_types_casting' => true,
'native_constant_invocation' => true,
'native_function_invocation' => true,
'no_blank_lines_after_class_opening' => true,
'no_blank_lines_after_phpdoc' => true,
'no_closing_tag' => true,
'no_empty_comment' => true,
'no_leading_import_slash' => true,
'no_spaces_around_offset' => true,
'no_trailing_comma_in_singleline_array' => true,
'no_unused_imports' => true,
'no_useless_else' => true,
'no_whitespace_before_comma_in_array' => true,
'object_operator_without_whitespace' => true,
'ordered_class_elements' => [
'order' => [
'use_trait',
'constant_public',
'constant_protected',
'constant_private',
'property_public',
'property_protected',
'property_private',
'construct',
'destruct',
'magic',
'method_public',
'method_protected',
'method_private',
],
],
'psr0' => true,
'psr4' => true,
'return_type_declaration' => ['space_before' => 'none'],
'short_scalar_cast' => true,
'single_quote' => true,
'standardize_not_equals' => true,
'strict_comparison' => true,
'ternary_to_null_coalescing' => true,
'visibility_required' => ['elements' => ['property', 'method', 'const']],
'void_return' => true,
])
->setFinder(
PhpCsFixer\Finder::create()
->in(__DIR__ . '/src')
->files()
);