-
Notifications
You must be signed in to change notification settings - Fork 0
/
pint.json
50 lines (50 loc) · 1.28 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
42
43
44
45
46
47
48
49
50
{
"preset": "laravel",
"rules": {
"declare_strict_types": true,
"binary_operator_spaces": {
"default": "align_single_space_minimal"
},
"curly_braces_position": {
"classes_opening_brace": "same_line",
"functions_opening_brace": "same_line"
},
"encoding": true,
"assign_null_coalescing_to_coalesce_equal": true,
"explicit_string_variable": true,
"void_return": true,
"phpdoc_align":{
"align": "vertical"
},
"align_multiline_comment": {
"comment_type": "all_multiline"
},
"phpdoc_order": {
"order": [
"param",
"return",
"throws"
]
},
"phpdoc_add_missing_param_annotation":{
"only_untyped": true
},
"no_superfluous_phpdoc_tags": {
"allow_mixed": true,
"allow_unused_params": true
},
"phpdoc_separation": {
"groups": [
[
"param",
"throws",
"return"
],
[
"author",
"date"
]
]
}
}
}