-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpint.json
69 lines (69 loc) · 2.06 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
{
"preset": "laravel",
"rules": {
"align_multiline_comment": {
"comment_type": "phpdocs_like"
},
"binary_operator_spaces": {
"operators": {
"|": null
}
},
"blank_line_after_opening_tag": false,
"blank_line_between_import_groups": false,
"combine_consecutive_unsets": true,
"concat_space": {
"spacing": "one"
},
"global_namespace_import": {
"import_classes": true,
"import_constants": true,
"import_functions": true
},
"linebreak_after_opening_tag": false,
"mb_str_functions": true,
"native_function_invocation": false,
"no_superfluous_phpdoc_tags": false,
"no_useless_else": true,
"no_useless_return": true,
"not_operator_with_successor_space": false,
"ordered_class_elements": {
"sort_algorithm": "alpha"
},
"ordered_imports": {
"imports_order": [
"class",
"function",
"const"
],
"sort_algorithm": "alpha"
},
"phpdoc_add_missing_param_annotation": {
"only_untyped": false
},
"phpdoc_align": false,
"phpdoc_no_alias_tag": {
"replacements": {
"type": "var"
}
},
"phpdoc_no_empty_return": false,
"phpdoc_order": true,
"phpdoc_separation": false,
"phpdoc_to_comment": false,
"phpdoc_trim": true,
"phpdoc_trim_consecutive_blank_line_separation": true,
"phpdoc_var_without_name": false,
"php_unit_method_casing": false,
"php_unit_strict": true,
"php_unit_test_annotation": {
"style": "annotation"
},
"single_import_per_statement": false,
"single_trait_insert_per_statement": true,
"strict_comparison": true,
"strict_param": true,
"use_arrow_functions": true,
"yoda_style": false
}
}