-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpint.json
More file actions
55 lines (55 loc) · 1.56 KB
/
pint.json
File metadata and controls
55 lines (55 loc) · 1.56 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
{
"preset": "psr12",
"rules": {
"yoda_style": {
"always_move_variable": false,
"equal": true,
"identical": true,
"less_and_greater": true
},
"array_syntax": {
"syntax": "short"
},
"concat_space": {
"spacing": "one"
},
"return_assignment": true,
"method_chaining_indentation": true,
"no_unused_imports": true,
"not_operator_with_successor_space": true,
"single_quote": {
"strings_containing_single_quote_chars": true
},
"phpdoc_scalar": true,
"unary_operator_spaces": true,
"binary_operator_spaces": true,
"blank_line_before_statement": {
"statements": [
"declare",
"return",
"throw",
"try"
]
},
"phpdoc_single_line_var_spacing": true,
"phpdoc_var_without_name": true,
"method_argument_space": {
"on_multiline": "ensure_fully_multiline",
"keep_multiple_spaces_after_comma": true
},
"single_import_per_statement": true,
"single_trait_insert_per_statement": false,
"single_line_after_imports": true,
"simplified_null_return": true,
"braces": false,
"declare_strict_types": true,
"trailing_comma_in_multiline": true,
"new_with_braces": {
"anonymous_class": false,
"named_class": false
}
},
"exclude": [
"packages"
]
}