Check for existing issues
Describe the feature
I'm using vale on Jekyll files. But I would like to (optionally) have vale ignore files that are not published.
Within jekyll, these files have an option (in the file itself) setting published: false. example below
---
layout: page
header: no
title: "What I talk about when I talk about Following Conventions when Changing Existing Code"
date: 2025-08-10 00:34:08
tags: ["software-architecture"]
meta_description: |
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis ac arcu urna. Fusce non metus massa.
Fusce vitae feugiat tortor. Donec ut varius dui. Phasellus condimentum, quam eu vehicula cursus, magna erat
published: false
---
some content
Is it possible to have vale ignore files given an arbitrary condition? (in this case, files where a line matches a regex ^published: false$ or something like that)
Check for existing issues
Describe the feature
I'm using vale on Jekyll files. But I would like to (optionally) have vale ignore files that are not published.
Within jekyll, these files have an option (in the file itself) setting
published: false. example belowIs it possible to have vale ignore files given an arbitrary condition? (in this case, files where a line matches a regex
^published: false$or something like that)