-
Notifications
You must be signed in to change notification settings - Fork 14
/
pint.json
39 lines (39 loc) · 1.06 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
{
"preset": "psr12",
"rules": {
"array_syntax": {
"syntax": "short"
},
"binary_operator_spaces": {
"default": "single_space",
"operators": {
"=": null
}
},
"blank_line_before_statement": {
"statements": [
"break",
"continue",
"declare",
"return",
"throw",
"try"
]
},
"concat_space": {
"spacing": "one"
},
"function_typehint_space": true,
"native_function_casing": true,
"no_extra_blank_lines": true,
"no_leading_namespace_whitespace": true,
"no_spaces_around_offset": true,
"no_unused_imports": true,
"not_operator_with_successor_space": true,
"object_operator_without_whitespace": true,
"single_quote": true,
"trailing_comma_in_multiline": true,
"unary_operator_spaces": true,
"whitespace_after_comma_in_array": true
}
}