-
Notifications
You must be signed in to change notification settings - Fork 0
/
.styleci.yml
111 lines (108 loc) · 2.65 KB
/
.styleci.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
preset: psr2
risky: true
finder:
path:
- "src/"
- "tests/"
name:
- "*.php"
enabled:
- short_array_syntax
- binary_operator_spaces
- blank_line_after_opening_tag
- blank_line_before_return
- cast_spaces
- combine_consecutive_unsets
- declare_strict_types
- doctrine_annotation_braces
- doctrine_annotation_indentation
- doctrine_annotation_spaces
- function_to_constant
- function_typehint_space
- hash_to_slash_comment
- include
- is_null
- linebreak_after_opening_tag
- short_list_syntax
- lowercase_cast
- magic_constant_casing
- method_separation
- modernize_types_casting
- native_function_casing
- new_with_braces
- no_alias_functions
- no_blank_lines_after_class_opening
- no_blank_lines_after_phpdoc
- no_empty_comment
- no_empty_phpdoc
- no_empty_statement
- no_extra_consecutive_blank_lines
- no_leading_import_slash
- no_leading_namespace_whitespace
- print_to_echo
- no_multiline_whitespace_around_double_arrow
- no_multiline_whitespace_before_semicolons
- no_short_bool_cast
- no_short_echo_tag
- no_singleline_whitespace_before_semicolons
- no_spaces_inside_offset
- no_spaces_outside_offset
- no_trailing_comma_in_list_call
- no_trailing_comma_in_singleline_array
- no_unneeded_control_parentheses
- no_unreachable_default_argument_value
- no_unused_imports
- no_useless_else
- no_useless_return
- no_whitespace_before_comma_in_array
- no_whitespace_in_blank_line
- non_printable_character
- normalize_index_brace
- phpdoc_add_missing_param_annotation
- php_unit_fqcn_annotation
- phpdoc_align
- object_operator_without_whitespace
- phpdoc_indent
- phpdoc_inline_tag
- phpdoc_no_access
- phpdoc_no_empty_return
- phpdoc_no_package
- phpdoc_no_useless_inheritdoc
- phpdoc_return_self_reference
- phpdoc_order
- phpdoc_scalar
- phpdoc_separation
- phpdoc_single_line_var_spacing
- phpdoc_summary
- phpdoc_trim
- phpdoc_types
- phpdoc_var_without_name
- pre_increment
- protected_to_private
- psr4
- return_type_declaration
- semicolon_after_instruction
- short_scalar_cast
- single_blank_line_before_namespace
- single_quote
- space_after_semicolon
- standardize_not_equals
- ternary_operator_spaces
- ternary_to_null_coalescing
- trailing_comma_in_multiline_array
- trim_array_spaces
- unary_operator_spaces
- const_visibility_required
- whitespace_after_comma_in_array
- pow_to_exponentiation
- no_php4_constructor
- ereg_to_preg
- alpha_ordered_imports
- php_unit_construct
- php_unit_strict
- dir_constant
- self_accessor
- void_return
- declare_equal_normalize
disabled:
- psr0