-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpint.json
33 lines (33 loc) · 917 Bytes
/
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
{
"rules": {
"method_chaining_indentation": true,
"logical_operators": true,
"simplified_null_return": false,
"cast_spaces": false,
"no_unreachable_default_argument_value": false,
"no_alternative_syntax": false,
"not_operator_with_successor_space": false,
"no_trailing_comma_in_list_call": false,
"phpdoc_summary": false,
"braces": false,
"self_accessor": false,
"phpdoc_separation": false,
"phpdoc_align": false,
"no_trailing_comma_in_singleline": false,
"phpdoc_trim_consecutive_blank_line_separation": true,
"blank_line_before_statement": {
"statements": [
"declare",
"return",
"throw",
"try"
]
},
"single_blank_line_at_eof": false,
"single_space_around_construct": false,
"function_declaration": {
"closure_function_spacing": "none",
"closure_fn_spacing": "none"
}
}
}