-
Notifications
You must be signed in to change notification settings - Fork 0
/
pint.json
46 lines (46 loc) · 1.27 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
{
"preset": "psr12",
"rules": {
"concat_space": {
"spacing": "one"
},
"method_chaining_indentation": true,
"new_with_braces": false,
"no_blank_lines_after_phpdoc": true,
"no_superfluous_phpdoc_tags": true,
"not_operator_with_successor_space": true,
"Laravel/laravel_phpdoc_alignment": true,
"ordered_imports": true,
"phpdoc_no_package": true,
"phpdoc_scalar": true,
"phpdoc_separation": {
"groups": [
[
"deprecated",
"link",
"see",
"since"
],
[
"author",
"copyright",
"license"
],
[
"property",
"property-read",
"property-write"
],
[
"test",
"dataProvider"
]
]
},
"phpdoc_trim": true,
"single_space_around_construct": true,
"single_trait_insert_per_statement": false,
"trailing_comma_in_multiline": false,
"unary_operator_spaces": true
}
}