-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpint.json
More file actions
86 lines (86 loc) · 2.5 KB
/
Copy pathpint.json
File metadata and controls
86 lines (86 loc) · 2.5 KB
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
{
"preset": "laravel",
"rules": {
"function_declaration": {
"closure_fn_spacing": "one"
},
"no_superfluous_phpdoc_tags": false,
"simplified_null_return": true,
"new_with_braces": {
"anonymous_class": false,
"named_class": false
},
"return_type_declaration": true,
"array_syntax": {
"syntax": "short"
},
"ordered_imports": {
"sort_algorithm": "alpha"
},
"no_unused_imports": true,
"no_whitespace_before_comma_in_array": true,
"not_operator_with_successor_space": true,
"trailing_comma_in_multiline": {
"elements": [
"arrays"
]
},
"phpdoc_scalar": true,
"unary_operator_spaces": true,
"binary_operator_spaces": {
"operators": {
"=>": "align_single_space"
}
},
"blank_line_before_statement": {
"statements": [
"continue",
"declare",
"return",
"throw",
"try"
]
},
"phpdoc_separation": true,
"phpdoc_align": true,
"phpdoc_order": true,
"phpdoc_single_line_var_spacing": true,
"phpdoc_var_without_name": true,
"class_attributes_separation": {
"elements": {
"method": "one"
}
},
"method_argument_space": {
"on_multiline": "ignore"
},
"trim_array_spaces": true,
"single_trait_insert_per_statement": false,
"new_with_parentheses": false,
"php_unit_method_casing": {
"case": "camel_case"
},
"no_closing_tag": true,
"blank_line_after_namespace": true,
"fully_qualified_strict_types": {
"import_symbols": true
},
"single_line_empty_body": true,
"single_quote": true,
"concat_space": {
"spacing": "one"
},
"nullable_type_declaration_for_default_null_value": true,
"no_useless_else": true,
"no_useless_return": true,
"simplified_if_return": true,
"yoda_style": false,
"multiline_whitespace_before_semicolons": {
"strategy": "no_multi_line"
},
"single_space_around_construct": true,
"no_extra_blank_lines": true,
"no_blank_lines_after_phpdoc": false,
"self_accessor": true
}
}