-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
pint.json
44 lines (43 loc) · 1.1 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
{
"preset": "laravel",
"rules": {
"binary_operator_spaces": {
"operators": {
"=>": "align_single_space_minimal",
"=": "align_single_space_minimal"
}
},
"concat_space": {
"spacing": "one"
},
"no_unused_imports": true,
"no_spaces_inside_parenthesis": true,
"single_trait_insert_per_statement": true,
"no_multiple_statements_per_line": true,
"no_blank_lines_after_class_opening": true,
"no_extra_blank_lines": {
"tokens": [
"extra",
"throw",
"use",
"curly_brace_block"
]
},
"class_attributes_separation": {
"elements": {
"const": "one",
"method": "one",
"property": "one",
"trait_import": "none",
"case": "none"
}
},
"ordered_class_elements": {
"order": [
"use_trait"
]
}
},
"exclude": [
]
}