-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpint.json
48 lines (48 loc) · 1.29 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
46
47
48
{
"preset": "psr12",
"rules": {
"array_indentation": true,
"concat_space": {
"spacing": "one"
},
"function_declaration": {
"closure_fn_spacing": "none",
"closure_function_spacing": "one",
"trailing_comma_single_line": false
},
"method_chaining_indentation": true,
"no_trailing_comma_in_singleline": {
"elements": [
"arguments",
"array_destructuring",
"array",
"group_import"
]
},
"no_whitespace_before_comma_in_array": {
"after_heredoc": false
},
"ordered_imports": {
"imports_order": null,
"sort_algorithm": "alpha"
},
"single_space_around_construct": {
"constructs_contain_a_single_space": [
"yield_from"
]
},
"trailing_comma_in_multiline": {
"after_heredoc": true,
"elements": [
"arguments",
"arrays",
"match",
"parameters"
]
},
"trim_array_spaces": true,
"whitespace_after_comma_in_array": {
"ensure_single_space": true
}
}
}