-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpint.json
More file actions
42 lines (42 loc) · 1.29 KB
/
pint.json
File metadata and controls
42 lines (42 loc) · 1.29 KB
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
{
"preset": "per",
"rules": {
"array_indentation": true,
"array_syntax": {
"syntax": "short"
},
"binary_operator_spaces": true,
"blank_line_after_namespace": true,
"blank_line_after_opening_tag": true,
"cast_spaces": true,
"combine_consecutive_issets": true,
"combine_consecutive_unsets": true,
"concat_space": {
"spacing": "one"
},
"declare_parentheses": true,
"declare_strict_types": true,
"fully_qualified_strict_types": true,
"function_declaration": {
"closure_fn_spacing": "none"
},
"mb_str_functions": true,
"method_argument_space": true,
"modernize_types_casting": true,
"new_with_parentheses": {
"anonymous_class": false
},
"no_multiple_statements_per_line": true,
"no_superfluous_elseif": true,
"no_unused_imports": true,
"no_useless_else": true,
"ordered_interfaces": true,
"ordered_traits": true,
"single_line_after_imports": true,
"single_line_empty_body": true,
"single_quote": true,
"single_trait_insert_per_statement": true,
"strict_comparison": true,
"visibility_required": true
}
}