-
Notifications
You must be signed in to change notification settings - Fork 0
/
pint.json
50 lines (49 loc) · 1.67 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
{
"preset": "laravel",
"rules": {
"declare_strict_types": true,
"blank_line_after_opening_tag": false,
"linebreak_after_opening_tag": false,
"type_declaration_spaces": false,
"nullable_type_declaration": false,
"nullable_type_declaration_for_default_null_value": false,
"concat_space": {
"spacing": "one"
},
"single_class_element_per_statement": {
"elements": {}
},
"class_attributes_separation": {
"elements": {
"const": "one",
"method": "one"
}
},
"curly_braces_position": {
"control_structures_opening_brace": "same_line",
"functions_opening_brace": "next_line_unless_newline_at_signature_end",
"anonymous_functions_opening_brace": "same_line",
"classes_opening_brace": "next_line_unless_newline_at_signature_end",
"anonymous_classes_opening_brace": "same_line",
"allow_single_line_empty_anonymous_classes": false,
"allow_single_line_anonymous_functions": false
},
"function_typehint_space": false,
"new_with_parentheses": {
"anonymous_class": false,
"named_class": true
},
"unary_operator_spaces": false,
"constant_case": false,
"single_space_around_construct": false,
"statement_indentation": false,
"line_ending": false,
"braces": false,
"whitespace_after_comma_in_array": false,
"phpdoc_separation": false,
"phpdoc_align": false,
"backtick_to_shell_exec": true
},
"exclude": [
]
}