-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpint.json
37 lines (37 loc) · 917 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
{
"preset": "laravel",
"rules": {
"@PER-CS": true,
"@PER-CS:risky": true,
"@PHP81Migration": true,
"@PHP82Migration": true,
"@PHP83Migration": true,
"simplified_null_return": true,
"braces": false,
"new_with_braces": {
"anonymous_class": false,
"named_class": false
},
"single_quote": {
"strings_containing_single_quote_chars": true
},
"blank_line_before_statement": {
"statements": [
"break",
"continue",
"declare",
"return",
"throw",
"try"
]
},
"declare_strict_types": true,
"not_operator_with_successor_space": true,
"concat_space": {
"spacing": "one"
}
},
"exclude": [
"build"
]
}