-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgrumphp.yml
More file actions
46 lines (46 loc) · 1.35 KB
/
grumphp.yml
File metadata and controls
46 lines (46 loc) · 1.35 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
grumphp:
tasks:
composer:
file: ./composer.json
no_check_all: true
no_check_lock: false
no_check_publish: true
no_local_repository: false
with_dependencies: false
strict: false
phpmd:
whitelist_patterns:
- 'src/'
exclude:
- 'tests/'
ruleset: ['./rulesets/phpmd.xml']
triggered_by: ['php']
phpstan:
configuration: rulesets/phpstan.neon
level: null
memory_limit: "-1"
triggered_by: ['php']
phpcsfixer:
allow_risky: true
config: rulesets/php-cs-fixer.php
triggered_by: ['php']
git_commit_message:
allow_empty_message: false
enforce_capitalized_subject: true
enforce_no_subject_trailing_period: true
enforce_single_lined_subject: true
max_body_width: 72
max_subject_width: 60
case_insensitive: true
multiline: true
type_scope_conventions: []
testsuites:
git_pre_commit:
tasks:
- composer
- phpmd
- phpstan
- phpcsfixer
git_commit_msg:
tasks:
- git_commit_message