-
Notifications
You must be signed in to change notification settings - Fork 1
/
pint.json
68 lines (68 loc) · 2.19 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
{
"preset": "laravel",
"rules": {
"blank_line_between_import_groups": true,
"class_attributes_separation": {
"elements": {
"const": "none",
"method": "one",
"property": "none",
"trait_import": "none",
"case": "none"
}
},
"concat_space": {
"spacing": "one"
},
"explicit_string_variable": true,
"global_namespace_import": {
"import_classes": true,
"import_constants": true,
"import_functions": true
},
"ordered_imports": {
"sort_algorithm": "alpha"
},
"php_unit_test_annotation": {
"style": "annotation"
},
"simple_to_complex_string_variable": true,
"blank_line_after_namespace": true,
"array_push": true,
"cast_spaces": true,
"constant_case": true,
"indentation_type": true,
"line_ending": true,
"linebreak_after_opening_tag": true,
"lowercase_static_reference": true,
"method_argument_space": {
"keep_multiple_spaces_after_comma": true,
"on_multiline": "ensure_fully_multiline"
},
"no_closing_tag": true,
"no_empty_comment": true,
"no_empty_phpdoc": true,
"no_spaces_after_function_name": true,
"no_useless_return": true,
"no_whitespace_in_blank_line": true,
"new_with_braces": {
"named_class": false
},
"ternary_to_null_coalescing": true,
"explicit_indirect_variable": true,
"no_unused_imports": true,
"nullable_type_declaration_for_default_null_value": true,
"array_indentation": true,
"array_syntax": true,
"combine_consecutive_issets": true,
"combine_consecutive_unsets": true,
"list_syntax": true,
"magic_constant_casing": true,
"magic_method_casing": true,
"no_leading_import_slash": true,
"no_leading_namespace_whitespace": true,
"not_operator_with_successor_space": false,
"single_blank_line_at_eof": false,
"single_quote": false
}
}