-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpint.json
More file actions
50 lines (50 loc) · 1.05 KB
/
pint.json
File metadata and controls
50 lines (50 loc) · 1.05 KB
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
{
"preset": "laravel",
"rules": {
"blank_line_before_statement": {
"statements": [
"break",
"case",
"continue",
"declare",
"default",
"do",
"exit",
"for",
"foreach",
"if",
"include",
"include_once",
"require",
"require_once",
"return",
"switch",
"throw",
"try",
"while",
"yield"
]
},
"class_definition": {
"multi_line_extends_each_single_line": true,
"single_item_single_line": true,
"single_line": false
},
"concat_space": {
"spacing": "one"
},
"explicit_string_variable": true,
"method_chaining_indentation": true,
"new_with_braces": true,
"nullable_type_declaration_for_default_null_value": true,
"ordered_traits": true,
"php_unit_method_casing": {
"case": "camel_case"
},
"php_unit_test_annotation": {
"style": "prefix"
},
"phpdoc_separation": true,
"single_line_empty_body": true
}
}