-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpint.json
38 lines (38 loc) · 980 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
33
34
35
36
37
38
{
"preset": "laravel",
"rules": {
"blank_line_before_statement": {
"statements": [
"break",
"continue",
"do",
"exit",
"for",
"foreach",
"if",
"phpdoc",
"return",
"switch",
"throw",
"try",
"while",
"yield",
"yield_from"
]
},
"class_attributes_separation": {
"elements": {
"const": "none",
"property": "none"
}
},
"concat_space": {
"spacing": "one"
},
"no_superfluous_phpdoc_tags": true,
"not_operator_with_successor_space": false,
"phpdoc_separation": true,
"phpdoc_trim_consecutive_blank_line_separation": true,
"single_line_empty_body": false
}
}