-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.scrutinizer.yml
39 lines (34 loc) · 1008 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
35
36
37
38
39
inherit: true
build:
environment:
php: '5.5.25'
dependencies:
override:
- { command: 'composer install --no-interaction --prefer-source', idle_timeout: 600 }
tests:
override:
- bin/phpspec run --format=dot
filter:
paths: [app/code/community/*]
build_failure_conditions:
- 'elements.rating(<= D).new.exists'
- 'issues.label("coding-style").new.exists'
- 'issues.severity(>= MAJOR).new.exists'
tools:
external_code_coverage: false
php_code_coverage: false
php_code_sniffer:
config: { standard: 'Ecg' }
php_changetracking: false
php_sim: true
php_cs_fixer: false
php_mess_detector: true
php_pdepend: true
php_analyzer: true
sensiolabs_security_checker: true
checks:
php:
custom_coding_standard:
git_repository: 'https://github.com/inviqa/magento-phpcs-coding-standard.git'
git_version: 'origin/master'
ruleset_path: 'ruleset.xml'