-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpint.json
More file actions
82 lines (82 loc) · 2.45 KB
/
pint.json
File metadata and controls
82 lines (82 loc) · 2.45 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"preset": "psr12",
"rules": {
"align_multiline_comment": true,
"array_indentation": true,
"binary_operator_spaces": {
"default": "single_space"
},
"blank_line_before_statement": {
"statements": ["return"]
},
"cast_spaces": {
"space": "single"
},
"class_attributes_separation": {
"elements": {
"method": "one"
}
},
"concat_space": {
"spacing": "one"
},
"declare_equal_normalize": {
"space": "single"
},
"explicit_string_variable": false,
"fully_qualified_strict_types": false,
"function_typehint_space": true,
"global_namespace_import": true,
"heredoc_indentation": true,
"include": true,
"linebreak_after_opening_tag": true,
"lowercase_static_reference": true,
"magic_constant_casing": true,
"magic_method_casing": true,
"method_chaining_indentation": true,
"method_argument_space": {
"on_multiline": "ensure_fully_multiline"
},
"multiline_whitespace_before_semicolons": {
"strategy": "no_multi_line"
},
"new_with_braces": true,
"no_alias_functions": true,
"no_extra_blank_lines": {
"tokens": ["extra"]
},
"no_unused_imports": true,
"no_whitespace_before_comma_in_array": true,
"not_operator_with_successor_space": false,
"ordered_class_elements": true,
"ordered_imports": {
"sort_algorithm": "alpha"
},
"phpdoc_order": true,
"phpdoc_scalar": true,
"phpdoc_summary": true,
"phpdoc_to_comment": false,
"return_type_declaration": {
"space_before": "none"
},
"single_blank_line_at_eof": true,
"single_line_after_imports": true,
"single_quote": true,
"standardize_not_equals": true,
"trailing_comma_in_multiline": {
"elements": ["arrays"]
},
"visibility_required": {
"elements": ["const", "method", "property"]
},
"whitespace_after_comma_in_array": true,
"array_syntax": {
"syntax": "short"
},
"no_useless_else": true,
"no_useless_return": true,
"no_empty_statement": true
},
"indentation": "spaces",
"lineLength": 120
}