-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpint.json
More file actions
62 lines (62 loc) · 2.12 KB
/
pint.json
File metadata and controls
62 lines (62 loc) · 2.12 KB
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
{
"preset": "laravel",
"cache-file": ".cache/pint/pint.json",
"rules": {
"array_indentation": false,
"backtick_to_shell_exec": true,
"blank_line_after_opening_tag": false,
"class_attributes_separation": {
"elements": {
"const": "one",
"method": "one"
}
},
"class_definition": {
"inline_constructor_arguments": false,
"multi_line_extends_each_single_line": false,
"single_item_single_line": false,
"single_line": false,
"space_before_parenthesis": true
},
"concat_space": {
"spacing": "one"
},
"constant_case": false,
"curly_braces_position": {
"allow_single_line_anonymous_functions": false,
"allow_single_line_empty_anonymous_classes": false,
"anonymous_classes_opening_brace": "same_line",
"anonymous_functions_opening_brace": "same_line",
"classes_opening_brace": "next_line_unless_newline_at_signature_end",
"control_structures_opening_brace": "same_line",
"functions_opening_brace": "next_line_unless_newline_at_signature_end"
},
"declare_strict_types": true,
"function_typehint_space": false,
"increment_style": false,
"linebreak_after_opening_tag": false,
"lowercase_static_reference": false,
"new_with_parentheses": {
"anonymous_class": false,
"named_class": true
},
"nullable_type_declaration": false,
"nullable_type_declaration_for_default_null_value": false,
"php_unit_method_casing": false,
"phpdoc_align": false,
"phpdoc_separation": false,
"single_class_element_per_statement": {
"elements": {}
},
"single_space_around_construct": false,
"type_declaration_spaces": false,
"unary_operator_spaces": false,
"whitespace_after_comma_in_array": false
},
"exclude": [
".cache",
".github",
"vendor",
"tests/*/stubs/*"
]
}