-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpint.json
More file actions
52 lines (52 loc) · 1.49 KB
/
pint.json
File metadata and controls
52 lines (52 loc) · 1.49 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
51
52
{
"preset": "psr12",
"rules": {
"is_null": true,
"single_quote": {
"strings_containing_single_quote_chars": false
},
"declare_strict_types": true,
"strict_comparison": true,
"no_unused_imports": true,
"explicit_string_variable": true,
"native_function_casing": true,
"native_function_type_declaration_casing": true,
"ternary_to_null_coalescing": true,
"array_indentation": true,
"trim_array_spaces": true,
"ordered_imports": {
"sort_algorithm": "alpha"
},
"combine_consecutive_issets": true,
"combine_consecutive_unsets": true,
"no_multiline_whitespace_around_double_arrow": true,
"fully_qualified_strict_types": {
"leading_backslash_in_global_namespace": true,
"import_symbols": true
},
"method_chaining_indentation": true,
"php_unit_method_casing": {
"case": "camel_case"
},
"php_unit_test_annotation": {
"style": "prefix"
},
"global_namespace_import": {
"import_classes": true
},
"standardize_not_equals": true,
"no_empty_phpdoc": true,
"constant_case": {
"case": "lower"
},
"array_syntax": {
"syntax": "short"
},
"concat_space": {
"spacing": "one"
},
"list_syntax": {
"syntax": "short"
}
}
}