-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.scrutinizer.yml
56 lines (52 loc) · 1.36 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
checks:
php:
code_rating: true
duplication: true
build:
environment:
php: 7.2
redis: true
nodes:
coverage:
tests:
override:
-
command: ./vendor/bin/phpunit --coverage-clover=build/coverage/clover.xml
coverage:
file: 'build/coverage/clover.xml'
format: 'php-clover'
tools:
php_analyzer:
enabled: true
config:
checkstyle:
enabled: true
naming:
isser_method_name: ^.*$
utility_class_name: ^.*$
doc_comment_fixes:
enabled: false
reflection_fixes:
enabled: false
use_statement_fixes:
enabled: false
simplify_boolean_return:
enabled: true
external_code_coverage: false
php_code_coverage: false
php_changetracking: true
php_cpd: true
php_cs_fixer: false
php_mess_detector: true
php_pdepend: true
sensiolabs_security_checker: true
filter:
paths:
- src/*
coding_style:
php:
spaces:
before_parentheses:
closure_definition: true
around_operators:
concatenation: false