-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpint.json
More file actions
31 lines (31 loc) · 821 Bytes
/
pint.json
File metadata and controls
31 lines (31 loc) · 821 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
{
"preset": "laravel",
"cache-file": ".pint.cache",
"rules": {
"concat_space": {
"spacing": "one"
},
"new_with_parentheses": {
"anonymous_class": false,
"named_class": true
},
"ordered_class_elements": {
"order": [
"use_trait",
"constant",
"property",
"construct",
"phpunit",
"public",
"protected",
"private",
"method_public_static",
"method_protected_static",
"method_private_static"
],
"sort_algorithm": "none"
},
"single_line_empty_body": true,
"single_trait_insert_per_statement": true
}
}