-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpint.json
More file actions
20 lines (20 loc) · 544 Bytes
/
pint.json
File metadata and controls
20 lines (20 loc) · 544 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"preset": "per",
"rules": {
"align_multiline_comment": true,
"combine_consecutive_issets": true,
"combine_consecutive_unsets": true,
"concat_space": {"spacing": "one"},
"explicit_string_variable": true,
"ordered_imports": {
"sort_algorithm": "alpha",
"imports_order": [
"class",
"function",
"const"
]
},
"simple_to_complex_string_variable": true,
"phpdoc_summary": true
}
}