-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpint.json
More file actions
47 lines (47 loc) · 1.07 KB
/
pint.json
File metadata and controls
47 lines (47 loc) · 1.07 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
{
"preset": "laravel",
"exclude": [
"docker",
"deployment",
"public",
"storage",
"vendor",
"node_modules",
"bootstrap/cache"
],
"rules": {
"concat_space": {
"spacing": "one"
},
"no_superfluous_phpdoc_tags": {
"allow_mixed": true,
"allow_unused_params": true
},
"phpdoc_separation": {
"groups": [
["deprecated", "link", "see", "since"],
["author", "copyright", "license"],
["category", "package", "subpackage"],
["property", "property-read", "property-write"],
["param"],
["throws"],
["return"]
]
},
"blank_line_before_statement": {
"statements": ["return", "throw", "continue", "break"]
},
"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
},
"increment_style": {
"style": "pre"
}
}
}