-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.scrutinizer.yml
executable file
·76 lines (74 loc) · 2.44 KB
/
.scrutinizer.yml
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
filter:
excluded_paths:
- vendor/*
- tests/*
paths:
- src/*
checks:
php:
code_rating: true
duplication: true
variable_existence: true
useless_calls: true
use_statement_alias_conflict: true
unused_variables: true
unused_properties: true
unused_parameters: true
unused_methods: true
unreachable_code: true
sql_injection_vulnerabilities: true
security_vulnerabilities: true
precedence_mistakes: true
precedence_in_conditions: true
parameter_non_unique: true
no_property_on_interface: true
no_non_implemented_abstract_methods: true
deprecated_code_usage: true
closure_use_not_conflicting: true
closure_use_modifiable: true
avoid_useless_overridden_methods: true
avoid_conflicting_incrementers: true
assignment_of_null_return: true
use_self_instead_of_fqcn: true
switch_fallthrough_commented: true
too_many_arguments: true
simplify_boolean_return: true
return_doc_comments: true
return_doc_comment_if_not_inferrable: true
property_assignments: true
prefer_while_loop_over_for_loop: true
parameter_doc_comments: true
param_doc_comment_if_not_inferrable: true
overriding_private_members: true
optional_parameters_at_the_end: true
non_commented_empty_catch_block: true
no_unnecessary_if: true
no_unnecessary_function_call_in_for_loop: true
no_unnecessary_final_modifier: true
no_underscore_prefix_in_properties: true
no_underscore_prefix_in_methods: true
no_trait_type_hints: true
no_goto: true
no_global_keyword: true
no_error_suppression: true
no_empty_statements: true
no_debug_code: true
no_commented_out_code: true
more_specific_types_in_doc_comments: true
missing_arguments: true
method_calls_on_non_object: true
catch_class_exists: true
avoid_unnecessary_concatenation: true
avoid_todo_comments: true
avoid_superglobals: true
avoid_fixme_comments: true
argument_type_checks: true
avoid_aliased_php_functions: true
tools:
php_analyzer: true
php_changetracking: true
php_sim: true
sensiolabs_security_checker: true
external_code_coverage:
timeout: 300
runs: 4