-
Notifications
You must be signed in to change notification settings - Fork 0
/
pint.json
43 lines (43 loc) · 1.25 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
43
{
"preset": "psr12",
"rules": {
"braces": false,
"concat_space": {
"spacing": "one"
},
"new_with_braces": {
"anonymous_class": false,
"named_class": false
},
"phpdoc_separation": false,
"simplified_null_return": true,
"array_syntax": {
"syntax": "short"
},
"binary_operator_spaces": true,
"blank_line_before_statement": false,
"cast_spaces": false,
"class_attributes_separation": false,
"declare_equal_normalize": true,
"function_declaration": false,
"method_argument_space": false,
"multiline_whitespace_before_semicolons": false,
"no_empty_statement": true,
"no_leading_import_slash": true,
"no_leading_namespace_whitespace": true,
"no_multiline_whitespace_around_double_arrow": true,
"no_unused_imports": true,
"no_whitespace_before_comma_in_array": true,
"no_whitespace_in_blank_line": true,
"not_operator_with_successor_space": false,
"ordered_imports": true,
"phpdoc_add_missing_param_annotation": false,
"phpdoc_align": false,
"phpdoc_indent": false,
"phpdoc_order": true,
"phpdoc_scalar": true,
"single_line_after_imports": false,
"single_space_around_construct": false,
"trim_array_spaces": true
}
}