-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpinte.json
More file actions
108 lines (108 loc) · 2.99 KB
/
Copy pathpinte.json
File metadata and controls
108 lines (108 loc) · 2.99 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"preset": "laravel",
"indent": "\t",
"exclude": [
".agents",
".codex",
".claude",
"src/*/vendor",
"tests/CodeceptionSupport",
"tests/_data/temp"
],
"rules": {
"blank_line_after_opening_tag": false,
"linebreak_after_opening_tag": false,
"declare_strict_types": true,
"no_spaces_inside_parenthesis": true,
"assign_null_coalescing_to_coalesce_equal": true,
"simplified_if_return": true,
"control_structure_continuation_position": true,
"indentation_type": true,
"combine_consecutive_unsets": true,
"no_blank_lines_after_class_opening": false,
"use_arrow_functions": true,
"static_lambda": true,
"blank_line_between_import_groups": true,
"no_superfluous_phpdoc_tags": {
"allow_mixed": true
},
"phpdoc_align": {
"align": "vertical"
},
"braces": {
"position_after_functions_and_oop_constructs": "same",
"position_after_anonymous_constructs": "same"
},
"curly_braces_position": {
"functions_opening_brace": "same_line",
"classes_opening_brace": "next_line_unless_newline_at_signature_end",
"anonymous_classes_opening_brace": "same_line"
},
"binary_operator_spaces": {
"operators": {
"=": "align_single_space_minimal",
"+=": "align_single_space",
"=>": "align_single_space_minimal_by_scope",
"===": "align_single_space_minimal"
}
},
"class_attributes_separation": {
"elements": {
"const": "none",
"case": "none"
}
},
"concat_space": {
"spacing": "one"
},
"blank_line_before_statement": {
"statements": [
"if",
"do",
"return",
"switch",
"throw",
"try",
"yield"
]
},
"phpdoc_order": {
"order": [
"param",
"throws",
"return"
]
},
"phpdoc_separation": {
"groups": [
[
"deprecated",
"link",
"see",
"since"
],
[
"author",
"copyright",
"license"
],
[
"category",
"package",
"subpackage"
],
[
"property",
"property-read",
"property-write"
],
[
"param"
],
[
"return"
]
]
}
}
}