generated from luminarix/laravel-package-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pint.json
48 lines (48 loc) · 1.41 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
{
"preset": "laravel",
"rules": {
"concat_space": {
"spacing": "one"
},
"cast_spaces": false,
"array_push": true,
"strict_comparison": true,
"not_operator_with_successor_space": false,
"nullable_type_declaration_for_default_null_value": true,
"no_useless_else": true,
"no_unneeded_import_alias": true,
"no_empty_comment": true,
"global_namespace_import": true,
"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"
]
},
"no_useless_concat_operator": {
"juggle_simple_strings": true
},
"fully_qualified_strict_types": true,
"ordered_class_elements": true,
"numeric_literal_separator": true,
"combine_consecutive_unsets": true,
"combine_consecutive_issets": true,
"constant_case": true,
"explicit_string_variable": true,
"is_null": true,
"mb_str_functions": true,
"modernize_strpos": true
}
}