-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpint.json
79 lines (79 loc) · 2.22 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"preset": "psr12",
"rules": {
"psr_autoloading": true,
"array_syntax": {
"syntax": "short"
},
"binary_operator_spaces": {
"default": "single_space",
"operators": {
"|": "no_space"
}
},
"blank_line_before_statement": {
"statements": [
"declare",
"return"
]
},
"blank_line_after_opening_tag": true,
"cast_spaces": {
"space": "single"
},
"class_attributes_separation": {
"elements": {
"trait_import": "none"
}
},
"compact_nullable_typehint": true,
"concat_space": {
"spacing": "one"
},
"linebreak_after_opening_tag": true,
"native_function_invocation": {
"include": [
"@compiler_optimized"
]
},
"no_blank_lines_after_class_opening": true,
"no_extra_blank_lines": {
"tokens": [
"extra",
"continue",
"curly_brace_block",
"parenthesis_brace_block",
"return",
"square_brace_block",
"throw",
"use",
"switch",
"case",
"default"
]
},
"no_unused_imports": true,
"no_useless_else": true,
"no_whitespace_in_blank_line": true,
"not_operator_with_successor_space": false,
"object_operator_without_whitespace": true,
"ordered_imports": true,
"ordered_traits": true,
"phpdoc_order": true,
"return_type_declaration": {
"space_before": "none"
},
"single_line_after_imports": true,
"single_quote": true,
"single_trait_insert_per_statement": true,
"strict_comparison": true,
"ternary_operator_spaces": true,
"ternary_to_null_coalescing": true,
"unary_operator_spaces": true,
"global_namespace_import": {
"import_classes": true,
"import_constants": false,
"import_functions": false
}
}
}