-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpint.json
More file actions
32 lines (32 loc) · 829 Bytes
/
Copy pathpint.json
File metadata and controls
32 lines (32 loc) · 829 Bytes
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
{
"preset": "per",
"notPath": [
"data/data.php"
],
"rules": {
"native_function_invocation": {
"include": ["@compiler_optimized"],
"scope": "namespaced",
"strict": true
},
"no_unused_imports": true,
"ordered_imports": {
"sort_algorithm": "alpha"
},
"no_useless_else": true,
"no_useless_return": true,
"no_empty_statement": true,
"no_empty_phpdoc": true,
"no_empty_comment": true,
"array_syntax": {
"syntax": "short"
},
"single_quote": true,
"trailing_comma_in_multiline": {
"elements": ["arrays", "arguments", "parameters"]
},
"php_unit_method_casing": {
"case": "camel_case"
}
}
}