generated from spatie/package-skeleton-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pint.json
33 lines (33 loc) · 757 Bytes
/
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
{
"preset" : "laravel",
"rules" : {
"blank_line_before_statement" : true,
"trailing_comma_in_multiline" : false,
"concat_space" : {
"spacing" : "one"
},
"method_argument_space" : true,
"function_declaration" : {
"closure_function_spacing" : "none",
"closure_fn_spacing" : "none"
},
"array_indentation" : false,
"cast_spaces" : {
"space" : "none"
},
"class_attributes_separation" : {
"elements" : {
"const" : "none",
"method" : "one",
"property" : "none",
"trait_import" : "none"
}
},
"binary_operator_spaces" : {
"default" : "single_space",
"operators" : {
"=>" : "align_single_space_minimal"
}
}
}
}