-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpint.json
84 lines (84 loc) · 2.52 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
80
81
82
83
84
{
"preset": "psr12",
"rules": {
"@PSR1": true,
"@PSR2": true,
"@Symfony": true,
"array_syntax": {
"syntax": "short"
},
"binary_operator_spaces": {
"default": "single_space",
"operators": {
"=>": "align_single_space_minimal"
}
},
"blank_line_after_opening_tag": true,
"blank_line_before_statement": true,
"compact_nullable_typehint": true,
"concat_space": {
"spacing": "one"
},
"declare_equal_normalize": {
"space": "single"
},
"explicit_string_variable": true,
"fully_qualified_strict_types": true,
"function_to_constant": true,
"increment_style": {
"style": "post"
},
"is_null": true,
"linebreak_after_opening_tag": true,
"logical_operators": true,
"new_with_braces": false,
"no_blank_lines_before_namespace": false,
"no_leading_import_slash": true,
"global_namespace_import": false,
"no_leading_namespace_whitespace": false,
"no_unused_imports": true,
"no_useless_else": true,
"ordered_class_elements": {
"order": [
"use_trait",
"constant_public",
"constant_protected",
"constant_private",
"property_public_static",
"property_protected_static",
"property_private_static",
"property_public",
"property_protected",
"property_private",
"construct",
"destruct",
"magic",
"phpunit",
"method_public",
"method_protected",
"method_private"
],
"sort_algorithm": "none"
},
"ordered_imports": true,
"phpdoc_align": false,
"phpdoc_no_alias_tag": false,
"phpdoc_order": true,
"phpdoc_to_comment": false,
"phpdoc_var_annotation_correct_order": true,
"phpdoc_var_without_name": false,
"protected_to_private": false,
"psr_autoloading": false,
"random_api_migration": true,
"error_suppression": false,
"single_blank_line_before_namespace": false,
"strict_comparison": true,
"strict_param": false,
"yoda_style": false
},
"exclude": [
"node_modules",
"storage",
"vendor"
]
}