-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpint.json
More file actions
84 lines (84 loc) · 2.42 KB
/
Copy pathpint.json
File metadata and controls
84 lines (84 loc) · 2.42 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
83
84
{
"preset": "psr12",
"exclude": [
"bootstrap/cache",
"storage",
"vendor"
],
"rules": {
"@PSR12": true,
"array_syntax": {
"syntax": "short"
},
"ordered_imports": false,
"no_unused_imports": true,
"not_operator_with_successor_space": false,
"trailing_comma_in_multiline": {
"elements": [
"arrays"
]
},
"phpdoc_scalar": true,
"unary_operator_spaces": true,
"binary_operator_spaces": true,
"blank_line_before_statement": {
"statements": [
"break",
"continue",
"declare",
"return",
"throw",
"try"
]
},
"blank_line_after_namespace": true,
"single_blank_line_before_namespace": false,
"cast_spaces": {
"space": "single"
},
"concat_space": {
"spacing": "one"
},
"fully_qualified_strict_types": true,
"function_typehint_space": true,
"lowercase_cast": true,
"lowercase_keywords": true,
"method_argument_space": {
"on_multiline": "ensure_fully_multiline"
},
"no_extra_blank_lines": {
"tokens": [
"extra",
"throw",
"use"
]
},
"no_multiline_whitespace_around_double_arrow": true,
"no_trailing_comma_in_singleline": true,
"no_whitespace_before_comma_in_array": true,
"no_whitespace_in_blank_line": false,
"object_operator_without_whitespace": true,
"single_blank_line_at_eof": true,
"single_class_element_per_statement": {
"elements": [
"property"
]
},
"single_import_per_statement": true,
"single_line_after_imports": true,
"space_after_semicolon": true,
"ternary_operator_spaces": true,
"trim_array_spaces": true,
"whitespace_after_comma_in_array": true,
"yoda_style": false,
"phpdoc_align": {
"align": "left"
},
"phpdoc_separation": false,
"phpdoc_summary": true,
"single_line_comment_style": true,
"single_line_comment_spacing": true,
"multiline_comment_opening_closing": true,
"comment_to_phpdoc": true
}
}