-
Notifications
You must be signed in to change notification settings - Fork 0
/
pint.json
52 lines (52 loc) · 1.4 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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"preset": "laravel",
"exclude": [
"config",
"lang"
],
"rules": {
"no_extra_blank_lines": {
"tokens": [
"attribute",
"break",
"case",
"continue",
"curly_brace_block",
"default",
"extra",
"parenthesis_brace_block",
"return",
"square_brace_block",
"switch",
"throw",
"use",
"use_trait"
]
},
"method_argument_space": {
"on_multiline": "ensure_fully_multiline"
},
"align_multiline_comment": true,
"class_definition": {
"single_line": false
},
"new_with_braces": {
"anonymous_class": false,
"named_class": true
},
"global_namespace_import": {
"import_classes": true,
"import_constants": true,
"import_functions": false
},
"is_null": true,
"logical_operators": true,
"no_empty_comment": true,
"ordered_traits": true,
"ternary_to_null_coalescing": true,
"explicit_indirect_variable": true,
"modernize_types_casting": true,
"no_useless_else": true,
"nullable_type_declaration_for_default_null_value": true
}
}