forked from Exeu/apai-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.scrutinizer.yml
34 lines (32 loc) · 861 Bytes
/
.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
tools:
php_code_sniffer:
filter:
excluded_paths: ["*/tests/*", "*/samples/*"]
config:
standard: "PSR1"
php_mess_detector:
filter:
excluded_paths: ["*/tests/*", "*/samples/*"]
php_analyzer:
filter:
excluded_paths: ["*/tests/*", "*/samples/*"]
sensiolabs_security_checker: true
php_code_coverage: true
external_code_coverage: true
before_commands:
- "composer install --prefer-source"
checks:
php:
unreachable_code: true
unused_methods: true
unused_parameters: true
parameter_doc_comments: true
no_debug_code: true
deadlock_detection_in_loops: true
deprecated_code_usage: true
code_rating: true
duplication: true
filter:
excluded_paths:
- tests/*
- samples/*