-
-
Notifications
You must be signed in to change notification settings - Fork 143
/
pint.json
executable file
·35 lines (35 loc) · 925 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
34
35
{
"preset": "laravel",
"rules": {
"align_multiline_comment": true,
"array_indentation": true,
"array_syntax": true,
"blank_line_after_namespace": true,
"blank_line_before_statement": true,
"concat_space": {
"spacing": "one"
},
"declare_parentheses": true,
"declare_strict_types": true,
"explicit_string_variable": true,
"global_namespace_import": {
"import_classes": true,
"import_constants": true,
"import_functions": true
},
"mb_str_functions": true,
"method_chaining_indentation": true,
"modernize_strpos": true,
"method_argument_space": true,
"no_empty_comment": true,
"ordered_traits": true,
"single_trait_insert_per_statement": true,
"simplified_if_return": true,
"strict_comparison": true,
"use_arrow_functions": true,
"void_return": true,
"types_spaces": {
"space": "single"
}
}
}