-
Notifications
You must be signed in to change notification settings - Fork 4
/
grumphp.yml
73 lines (72 loc) · 2.26 KB
/
grumphp.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
parameters:
convention.process_timeout: 240
convention.security_checker_blocking: true
convention.jsonlint_ignore_pattern: []
convention.xmllint_ignore_pattern: []
convention.yamllint_ignore_pattern: []
convention.phpcslint_ignore_pattern: []
convention.phpcslint_exclude: []
convention.xlifflint_ignore_pattern: []
convention.rector_ignore_pattern: []
convention.rector_enabled: true
convention.rector_config: 'rector.php'
convention.rector_clear-cache: false
convention.phpstan_level: ~
grumphp:
stop_on_failure: false
hide_circumvention_tip: true
ignore_unstaged_changes: false #brocken
process_timeout: "%convention.process_timeout%"
ascii:
failed: ./vendor/pluswerk/grumphp-config/logo.txt
succeeded: ./vendor/pluswerk/grumphp-config/logo.txt
tasks:
composer:
no_check_publish: true
with_dependencies: false
strict: false
composer_normalize:
indent_size: 2
indent_style: space
no_check_lock: false
no_update_lock: false
git_commit_message:
max_subject_width: 120
max_body_width: 120
enforce_capitalized_subject: false
jsonlint:
detect_key_conflicts: true
ignore_patterns: "%convention.jsonlint_ignore_pattern%"
phpcs:
standard: "PSR12"
warning_severity: 0
tab_width: 4
exclude: "%convention.phpcslint_exclude%"
ignore_patterns: "%convention.phpcslint_ignore_pattern%"
phpstan:
memory_limit: "-1"
level: "%convention.phpstan_level%"
phplint: ~
xmllint:
ignore_patterns: "%convention.xmllint_ignore_pattern%"
yamllint:
ignore_patterns: "%convention.yamllint_ignore_pattern%"
xlifflint:
ignore_patterns: "%convention.xlifflint_ignore_pattern%"
securitychecker_enlightn:
metadata:
blocking: "%convention.security_checker_blocking%"
run_always: true
plus_bom_fixer:
metadata:
priority: 1
rector:
metadata:
enabled: "%convention.rector_enabled%"
config: "%convention.rector_config%"
triggered_by: [ 'php' ]
clear_cache: "%convention.rector_clear-cache%"
ignore_patterns: "%convention.rector_ignore_pattern%"
extensions:
- PLUS\GrumPHPBomTask\ExtensionLoader
- PLUS\GrumPHPXliffTask\ExtensionLoader