Skip to content

Commit

Permalink
Allow local projects to use git_blacklist.ignore_patterns configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Boonstra authored and igorwulff committed Dec 18, 2023
1 parent 7602239 commit df7693a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Do not commit project install files.
/vendor
/composer.lock
/composer.lock
.idea
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 2.17
## 2.17.1
### Added
- Added `ignore_patterns` support to allow project configurations to make use of this field through
configuration overrides

## 2.17.0
### Added
- BitExpert PHP stan module for Magento 2 projects.

Expand Down
2 changes: 2 additions & 0 deletions config/default/grumphp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ parameters:
git_blacklist.whitelist_patterns: []
git_blacklist.regexp_type: G
git_blacklist.match_word: true
git_blacklist.ignore_patterns: []

grumphp:
ascii:
Expand All @@ -83,6 +84,7 @@ grumphp:
triggered_by: '%git_blacklist.triggered_by%'
regexp_type: '%git_blacklist.regexp_type%'
match_word: '%git_blacklist.match_word%'
ignore_patterns: '%git_blacklist.ignore_patterns%'

xmllint:
load_from_net: '%xmllint.load_from_net%'
Expand Down

0 comments on commit df7693a

Please sign in to comment.