Skip to content

Commit df7693a

Browse files
Stefan Boonstraigorwulff
Stefan Boonstra
authored andcommitted
Allow local projects to use git_blacklist.ignore_patterns configuration
1 parent 7602239 commit df7693a

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
# Do not commit project install files.
22
/vendor
3-
/composer.lock
3+
/composer.lock
4+
.idea

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## 2.17
7+
## 2.17.1
8+
### Added
9+
- Added `ignore_patterns` support to allow project configurations to make use of this field through
10+
configuration overrides
11+
12+
## 2.17.0
813
### Added
914
- BitExpert PHP stan module for Magento 2 projects.
1015

config/default/grumphp.yml

+2
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ parameters:
6060
git_blacklist.whitelist_patterns: []
6161
git_blacklist.regexp_type: G
6262
git_blacklist.match_word: true
63+
git_blacklist.ignore_patterns: []
6364

6465
grumphp:
6566
ascii:
@@ -83,6 +84,7 @@ grumphp:
8384
triggered_by: '%git_blacklist.triggered_by%'
8485
regexp_type: '%git_blacklist.regexp_type%'
8586
match_word: '%git_blacklist.match_word%'
87+
ignore_patterns: '%git_blacklist.ignore_patterns%'
8688

8789
xmllint:
8890
load_from_net: '%xmllint.load_from_net%'

0 commit comments

Comments
 (0)