-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpint.json
More file actions
31 lines (31 loc) · 902 Bytes
/
pint.json
File metadata and controls
31 lines (31 loc) · 902 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
{
"preset": "laravel",
"rules": {
"declare_strict_types": true,
"no_unused_imports": true,
"ordered_imports": {
"sort_algorithm": "alpha",
"imports_order": ["class", "function", "const"]
},
"fully_qualified_strict_types": true,
"global_namespace_import": {
"import_classes": true,
"import_constants": true,
"import_functions": true
},
"blank_line_before_statement": {
"statements": ["return", "throw", "try"]
},
"single_line_throw": false,
"phpdoc_align": {
"align": "vertical"
},
"phpdoc_separation": true,
"phpdoc_order": true,
"no_superfluous_phpdoc_tags": {
"remove_inheritdoc": false,
"allow_mixed": true
},
"self_static_accessor": true
}
}