-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathpint.json
More file actions
44 lines (44 loc) · 1000 Bytes
/
Copy pathpint.json
File metadata and controls
44 lines (44 loc) · 1000 Bytes
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": "psr12",
"exclude": [
"config",
"database/migrations"
],
"rules": {
"no_unused_imports": true,
"ordered_imports": true,
"simplified_null_return": true,
"braces": false,
"no_extra_blank_lines": {
"tokens": [
"curly_brace_block",
"extra",
"parenthesis_brace_block",
"square_brace_block",
"throw",
"use"
]
},
"global_namespace_import": {
"import_classes": true,
"import_constants": true,
"import_functions": true
},
"class_attributes_separation": {
"elements": {
"method": "one"
}
},
"single_blank_line_at_eof": true,
"new_with_parentheses": {
"anonymous_class": true,
"named_class": true
},
"control_structure_continuation_position": {
"position": "same_line"
},
"no_whitespace_in_blank_line": true,
"unary_operator_spaces": true,
"no_spaces_inside_parenthesis": true
}
}