From c03103feabaa07e3ce586ebd7b6e6194ceac3b7a Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Tue, 29 Sep 2020 17:26:49 +0200 Subject: [PATCH] Enable strict front matter in Jekyll (#182) This causes invalid YAML in front matter to result in an build error instead of just printing a warning. This can be used to catch potential mistakes quicker. --- _config.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/_config.yml b/_config.yml index 5327be6..94209fb 100644 --- a/_config.yml +++ b/_config.yml @@ -11,6 +11,8 @@ exclude: - LICENSE.md - README.md +strict_front_matter: true + liquid: error_mode: strict strict_filters: true