forked from HDInnovations/UNIT3D-Community-Edition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pint.json
90 lines (90 loc) · 2.18 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"preset": "psr12",
"rules": {
"align_multiline_comment": true,
"array_indentation": true,
"array_syntax": true,
"blank_line_after_namespace": true,
"blank_line_after_opening_tag": true,
"blank_line_before_statement": {
"statements": [
"break",
"continue",
"declare",
"do",
"exit",
"for",
"foreach",
"goto",
"if",
"include",
"include_once",
"phpdoc",
"require",
"require_once",
"return",
"switch",
"throw",
"try",
"while",
"yield",
"yield_from"
]
},
"cast_spaces": true,
"combine_consecutive_issets": true,
"combine_consecutive_unsets": true,
"concat_space": true,
"declare_parentheses": true,
"explicit_string_variable": true,
"fully_qualified_strict_types": true,
"function_typehint_space": true,
"global_namespace_import": true,
"is_null": true,
"lambda_not_used_import": true,
"logical_operators": true,
"method_chaining_indentation": true,
"modernize_strpos": true,
"multiline_comment_opening_closing": true,
"new_with_braces": true,
"no_blank_lines_after_phpdoc": true,
"no_empty_comment": true,
"no_extra_blank_lines": {
"tokens": [
"attribute",
"break",
"case",
"curly_brace_block",
"default",
"extra",
"parenthesis_brace_block",
"return",
"square_brace_block",
"switch",
"use"
]
},
"not_operator_with_space": false,
"no_superfluous_elseif": true,
"no_unused_imports": true,
"no_useless_else": true,
"no_useless_sprintf": true,
"ordered_traits": true,
"phpdoc_align": true,
"phpdoc_order": true,
"phpdoc_scalar": true,
"phpdoc_summary": true,
"phpdoc_trim": true,
"simplified_if_return": true,
"simplified_null_return": true,
"ternary_to_null_coalescing": true,
"use_arrow_functions": true,
"void_return": true,
"native_function_invocation": true,
"binary_operator_spaces": {
"operators": {
"=>": "align_single_space_minimal"
}
}
}
}