-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpint.json
More file actions
48 lines (48 loc) · 997 Bytes
/
pint.json
File metadata and controls
48 lines (48 loc) · 997 Bytes
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
{
"preset": "laravel",
"exclude": [
"vendor",
"tests/fixtures",
"tests/Support/OriginStructures"
],
"rules": {
"not_operator_with_successor_space": false,
"php_unit_set_up_tear_down_visibility": false,
"php_unit_method_casing": {
"case": "camel_case"
},
"concat_space": {
"spacing": "one"
},
"class_attributes_separation": {
"elements": {
"method": "one"
}
},
"array_syntax": {
"syntax": "short"
},
"list_syntax": {
"syntax": "long"
},
"braces": {
"position_after_functions_and_oop_constructs": "next"
},
"single_line_empty_body": false,
"trailing_comma_in_multiline": {
"elements": [
"arguments",
"arrays",
"match",
"parameters"
]
},
"new_with_parentheses": {
"anonymous_class": false,
"named_class": true
},
"phpdoc_separation": {
"skip_unlisted_annotations": false
}
}
}