Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow local projects to use git_blacklist.ignore_patterns configuration #24

Merged
merged 1 commit into from
Dec 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading