-
Notifications
You must be signed in to change notification settings - Fork 0
/
pint.json
28 lines (28 loc) · 921 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
{
"preset": "psr12",
"rules": {
"group_import": true,
"ordered_imports": { "sort_algorithm": "length" },
"single_import_per_statement": false,
"simplified_null_return": false,
"single_trait_insert_per_statement": false,
"blank_line_after_namespace": false,
"fully_qualified_strict_types": true,
"single_blank_line_before_namespace": false,
"no_leading_namespace_whitespace": true,
"array_syntax": true,
"array_indentation": true,
"no_spaces_around_offset": true,
"no_trailing_whitespace": true,
"concat_space": false,
"cast_spaces": true,
"braces": false,
"lowercase_cast": true,
"class_reference_name_casing": true,
"switch_case_space": true,
"new_with_braces": {
"anonymous_class": false,
"named_class": false
}
}
}