-
Notifications
You must be signed in to change notification settings - Fork 1
/
pint.json
59 lines (59 loc) · 2.11 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
{
"preset": "laravel",
"rules": {
"no_superfluous_phpdoc_tags": false,
"Laravel/laravel_phpdoc_alignment": false,
"align_multiline_comment": true,
"array_indentation": true,
"array_syntax": true,
"blank_line_after_namespace": true,
"blank_line_after_opening_tag": true,
"combine_consecutive_issets": true,
"combine_consecutive_unsets": true,
"explicit_string_variable": true,
"function_typehint_space": true,
"not_operator_with_successor_space": false,
"braces": {
"allow_single_line_anonymous_class_with_empty_body": true,
"allow_single_line_closure": true,
"position_after_control_structures": "same",
"position_after_functions_and_oop_constructs": "same",
"position_after_anonymous_constructs": "same"
},
"curly_braces_position": {
"control_structures_opening_brace": "same_line",
"functions_opening_brace": "same_line",
"anonymous_functions_opening_brace": "same_line",
"classes_opening_brace": "same_line",
"anonymous_classes_opening_brace": "same_line",
"allow_single_line_empty_anonymous_classes": true,
"allow_single_line_anonymous_functions": true
},
"no_blank_lines_after_class_opening": false,
"no_blank_lines_after_phpdoc": false,
"binary_operator_spaces": {
"operators": {
"=>": null
}
},
"no_trailing_whitespace": false,
"no_extra_blank_lines": false,
"class_attributes_separation": {
"elements": {
"const": "one",
"method": "one",
"property": "one",
"trait_import": "one",
"case": "one"
}
},
"class_definition": {
"multi_line_extends_each_single_line": false,
"space_before_parenthesis": true,
"inline_constructor_arguments": false
},
"concat_space": {
"spacing": "one"
}
}
}