-
Notifications
You must be signed in to change notification settings - Fork 3
/
pint.json
45 lines (45 loc) · 1.35 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": "psr12",
"rules": {
"array_indentation": true,
"binary_operator_spaces": {
"default": "single_space"
},
"cast_spaces": true,
"class_attributes_separation": true,
"concat_space": true,
"declare_strict_types": true,
"lambda_not_used_import": true,
"method_chaining_indentation": true,
"multiline_whitespace_before_semicolons": true,
"no_extra_blank_lines": {
"tokens": [
"extra",
"throw",
"use"
]
},
"no_trailing_comma_in_singleline_array": true,
"no_unneeded_import_alias": true,
"no_unused_imports": true,
"no_whitespace_before_comma_in_array": true,
"not_operator_with_successor_space": true,
"object_operator_without_whitespace": true,
"ordered_imports": {
"imports_order": [
"const",
"function",
"class"
],
"sort_algorithm": "alpha"
},
"single_import_per_statement": false,
"single_quote": true,
"trailing_comma_in_multiline": {
"elements": ["arrays"]
},
"trim_array_spaces": true,
"unary_operator_spaces": true,
"whitespace_after_comma_in_array": true
}
}