-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpint.json
34 lines (34 loc) · 828 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
34
{
"preset": "laravel",
"rules": {
"single_quote": {
"strings_containing_single_quote_chars": true
},
"blank_line_before_statement": {
"statements": [
"break",
"continue",
"declare",
"return",
"throw",
"try"
]
},
"declare_strict_types": true,
"ordered_imports": {
"sort_algorithm": "length"
},
"concat_space": {
"spacing": "one"
},
"binary_operator_spaces": {
"operators": {
"=>": "align_single_space_minimal"
}
},
"not_operator_with_successor_space": false,
"cast_spaces": {
"space": "none"
}
}
}