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

feature request - add way to filter by filename is in root path #257

Open
davidosomething opened this issue Aug 21, 2023 · 0 comments
Open

Comments

@davidosomething
Copy link

currently the rootMarkers/requireMarker filter is:

			if dir := matchRootPath(fname, cfg.RootMarkers); dir == "" && cfg.RequireMarker == true {

i think this means:
only format / lint if rootMarker EXISTS in any parent dir

This request is to add a new feature

			if dir := matchParentPath(fname, cfg.ParentMarkers); dir == "" && cfg.RequireParentMarker == true {

such that
only format / lint if file is INSIDE a parentMarker dir

e.g.
actionlint should only run for the following parentMarkers = .github/

.github/
    - workflows/
        - abc.yml -- YES
    - FUNDING.yml -- YES
.vintrc.yml -- NO! not in .github/
.yamllint.yml -- NO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant