-
Notifications
You must be signed in to change notification settings - Fork 8
/
.scrutinizer.yml
50 lines (50 loc) · 1.07 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
build:
nodes:
analysis:
environment:
php:
version: 7.4
project_setup:
override:
- 'true'
tests:
override:
- php-scrutinizer-run
tests:
environment:
php:
version: 7.4
tests:
override:
-
command: vendor/bin/phpunit --testsuite=unit --coverage-clover=my-coverage-file
coverage:
file: my-coverage-file
format: php-clover
filter:
excluded_paths:
- 'test/*'
- 'tools/*'
- 'lambda/*'
dependency_paths:
- 'vendor/*'
- 'tools/*'
- 'lambda/*'
checks:
php:
duplication: false
unused_methods: false
unused_parameters: false
argument_type_checks: false
verify_property_names: false
method_calls_on_non_object: false
fix_doc_comments: false
instanceof_class_exists: false
catch_class_exists: false
assignment_of_null_return: false
use_statement_alias_conflict: false
coding_style:
php:
spaces:
around_operators:
concatenation: true