-
Notifications
You must be signed in to change notification settings - Fork 0
/
pint.json
41 lines (41 loc) · 1.07 KB
/
pint.json
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
{
"preset": "laravel",
"rules": {
"not_operator_with_successor_space": false,
"control_structure_braces": false,
"cast_spaces": {
"space": "none"
},
"binary_operator_spaces": {
"operators": {
"=>": "align"
}
},
"braces_position": {
"allow_single_line_anonymous_functions": true,
"allow_single_line_empty_anonymous_classes": true,
"functions_opening_brace": "same_line"
},
"function_declaration": {
"closure_fn_spacing": "none"
},
"concat_space": {
"spacing": "one"
},
"phpdoc_align": {
"align": "vertical",
"tags": []
},
"phpdoc_line_span": {
"method": "single",
"property": "single",
"const": "single"
},
"simplified_null_return": true,
"braces": false,
"new_with_braces": {
"anonymous_class": false,
"named_class": false
}
}
}