-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pint.json
45 lines (45 loc) · 1.25 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
{
"preset": "laravel",
"rules": {
"no_unused_imports": true,
"array_indentation": true,
"declare_strict_types": true,
"array_syntax": {
"syntax": "short"
},
"blank_line_before_statement": {
"statements": [
"break",
"declare",
"return",
"throw",
"try",
"while",
"for",
"if",
"continue",
"foreach"
]
},
"braces": {
"allow_single_line_anonymous_class_with_empty_body": false,
"allow_single_line_closure": false,
"position_after_anonymous_constructs": "same",
"position_after_control_structures": "same",
"position_after_functions_and_oop_constructs": "next"
},
"cast_spaces": false,
"concat_space": {
"spacing": "one"
},
"binary_operator_spaces": {
"operators": {
"=>": "align_single_space_minimal"
}
},
"ordered_imports": {
"sort_algorithm": "alpha"
},
"nullable_type_declaration_for_default_null_value": false
}
}