-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgrumphp.yml.dist
More file actions
70 lines (68 loc) · 1.8 KB
/
grumphp.yml.dist
File metadata and controls
70 lines (68 loc) · 1.8 KB
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
---
grumphp:
hooks_dir: ~
hooks_preset: local
ascii:
failed: ~
succeeded: ~
fixer:
enabled: false
hide_circumvention_tip: false
tasks:
clover_coverage:
clover_file: tests/results/coverage.xml
# Requiring 100% code coverage here makes it safe to just put a static
# badge in the README rather than using some third-party service. If
# this ever changes, that strategy will have to change accordingly.
level: 100
composer: ~
composer_normalize: ~
phpcs:
standard: []
whitelist_patterns:
- /^src/
- /^tests\/phpunit\/src/
- /^tests\/phpunit\/src_extra/
phplint:
ignore_patterns:
- .idea
- var
- vendor
phpstan:
use_grumphp_paths: false
phpunit:
config_file: ~
testsuite: default
group: []
exclude_group: []
always_execute: true
order: null
securitychecker_roave: ~
xmllint:
ignore_patterns:
- .idea
- var
- vendor
triggered_by:
- xml
- xml.dist
yamllint:
whitelist_patterns:
- .github
- /^.*.ya?ml(.dist)?$/
- config
- src
testsuites:
static:
tasks:
- composer
- composer_normalize
- phpcs
- phplint
- phpstan
- xmllint
- yamllint
test:
tasks:
- clover_coverage
- phpunit