-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpint.json
31 lines (31 loc) · 898 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
{
"preset": "laravel",
"cache-file": ".pint.json",
"rules": {
"binary_operator_spaces": {
"operators": {
"=>": "align_single_space_minimal"
}
},
"concat_space": {
"spacing": "one"
},
"multiline_whitespace_before_semicolons": {
"strategy": "new_line_for_chained_calls"
},
"not_operator_with_successor_space": false,
"ordered_types": {
"null_adjustment": "always_last",
"sort_algorithm": "alpha"
},
"phpdoc_align": true,
"phpdoc_annotation_without_dot": false,
"phpdoc_order": true,
"phpdoc_separation": true,
"phpdoc_types_order": {
"null_adjustment": "always_last"
},
"simplified_null_return": true,
"single_trait_insert_per_statement": true
}
}