-
Notifications
You must be signed in to change notification settings - Fork 208
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
Configuration's ignore_paths is not respected #774
Comments
alzabo
pushed a commit
to alzabo/puppet-lint
that referenced
this issue
Nov 1, 2017
The value of `PuppetLint.configuration.ignore_paths` was ignored, as described in issue rodjek#774
alzabo
added a commit
to alzabo/puppet-lint
that referenced
this issue
Nov 1, 2017
The value of `PuppetLint.configuration.ignore_paths` was ignored, as described in issue rodjek#774
Resolved by #777 |
Any plans to release a new version soon now that this issue has been resolved? |
@joshuaspence Yep, this will be part of the 2.3.4 later this week. |
Bump. It seems that 2.3.4 still has not yet been released. |
It's 4 months now. A workaround:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In
puppet-lint-2.3.3
, settingPuppetLint.configuration.ignore_paths
is ignored.Our rake task does this:
and all of those paths are linted.
I think it was broken by #762, which fixed setting
ignore_paths
in the task body, but broke reading it from outside.The reason is that the default is
which when evaluated here:
is truthy and therefore is never set to
PuppetLint.configuration.ignore_paths
.The text was updated successfully, but these errors were encountered: