-
Notifications
You must be signed in to change notification settings - Fork 33
/
pint.json
42 lines (42 loc) · 1.08 KB
/
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
39
40
41
42
{
"preset": "symfony",
"rules": {
"phpdoc_no_alias_tag": false,
"nullable_type_declaration_for_default_null_value": true,
"no_null_property_initialization": false,
"yoda_style": {
"equal": false,
"identical": false,
"less_and_greater": false
},
"concat_space": {
"spacing": "one"
},
"not_operator_with_space": false,
"increment_style": {
"style": "post"
},
"php_unit_method_casing": {
"case": "snake_case"
},
"global_namespace_import": {
"import_constants": true,
"import_functions": true
},
"method_chaining_indentation": true,
"phpdoc_align": {
"align": "vertical",
"tags": [
"param",
"property",
"property-read",
"property-write",
"return",
"throws",
"type",
"var",
"method"
]
}
}
}