-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpint.json
More file actions
33 lines (33 loc) · 743 Bytes
/
pint.json
File metadata and controls
33 lines (33 loc) · 743 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
{
"preset": "laravel",
"rules": {
"no_extra_blank_lines": {
"tokens": [
"attribute",
"break",
"case",
"continue",
"curly_brace_block",
"default",
"extra",
"parenthesis_brace_block",
"return",
"square_brace_block",
"switch",
"throw",
"use",
"use_trait"
]
},
"combine_consecutive_issets": true,
"combine_consecutive_unsets": true,
"declare_strict_types": true,
"explicit_string_variable": true,
"strict_comparison": true,
"ternary_to_null_coalescing": true,
"fully_qualified_strict_types": {
"import_symbols": true
}
},
"exclude": ["bootstrap", "config", "public"]
}