-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpint.json
More file actions
38 lines (38 loc) · 683 Bytes
/
Copy pathpint.json
File metadata and controls
38 lines (38 loc) · 683 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
{
"preset": "laravel",
"rules": {
"cast_spaces": {
"space": "none"
},
"concat_space": {
"spacing": "one"
},
"declare_strict_types": true,
"method_argument_space": {
"on_multiline": "ignore"
},
"multiline_whitespace_before_semicolons": {
"strategy": "new_line_for_chained_calls"
},
"new_with_parentheses": {
"anonymous_class": false,
"named_class": true
},
"phpdoc_align": {
"align": "left"
},
"single_line_comment_spacing": false,
"single_trait_insert_per_statement": true,
"types_spaces": {
"space": "none"
},
"yoda_style": true
},
"exclude": [
"node_modules",
"public",
"resources",
"storage",
"stubs"
]
}