-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpint.json
32 lines (32 loc) · 819 Bytes
/
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
{
"preset": "laravel",
"rules": {
"binary_operator_spaces": {
"default": "single_space",
"operators": {
"=>": null
}
},
"blank_line_before_statement": false,
"class_attributes_separation": {
"elements": {
"method": "one",
"trait_import": "none"
}
},
"concat_space": {
"spacing": "one"
},
"new_with_braces": {
"anonymous_class": false,
"named_class": false
},
"not_operator_with_space": false,
"not_operator_with_successor_space": false,
"simplified_null_return": true,
"trailing_comma_in_multiline": false
},
"exclude": [
"var", "storage"
]
}