From b163f9ff4d1e559e5691bc12f713af8fd0522711 Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Thu, 16 Apr 2026 14:06:47 +0100 Subject: [PATCH 1/3] remove path flag --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7da810b4..ba2e6a14 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ export SHELL = /bin/bash # Settings MAKEFILES=Makefile $(wildcard *.mk) JEKYLL_VERSION=3.8.5 -JEKYLL=bundle install --path .vendor/bundle && bundle update && bundle exec jekyll +JEKYLL=bundle install && bundle update && bundle exec jekyll PARSER=bin/markdown_ast.rb DST=_site From b7b657014d63551d5a8556bd4733f3909fa8b698 Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Thu, 16 Apr 2026 14:13:35 +0100 Subject: [PATCH 2/3] make raw string --- bin/lesson_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/lesson_check.py b/bin/lesson_check.py index 42771d01..b63a95d6 100644 --- a/bin/lesson_check.py +++ b/bin/lesson_check.py @@ -556,7 +556,7 @@ def __init__(self, args, filename, metadata, metadata_len, text, lines, doc): (re.compile(r'README\.md'), CheckNonJekyll), (re.compile(r'index\.md'), CheckIndex), (re.compile(r'reference\.md'), CheckReference), - (re.compile(os.path.join('_episodes', '*\.md')), CheckEpisode), + (re.compile(os.path.join('_episodes', r'*\.md')), CheckEpisode), (re.compile(r'.*\.md'), CheckGeneric) ] From 5beb4ba7d7b126bac917477339f286a83fa1819c Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Thu, 16 Apr 2026 14:24:33 +0100 Subject: [PATCH 3/3] crank up max line len --- bin/lesson_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/lesson_check.py b/bin/lesson_check.py index b63a95d6..227b72cc 100644 --- a/bin/lesson_check.py +++ b/bin/lesson_check.py @@ -103,7 +103,7 @@ # How long are lines allowed to be? # Please keep this in sync with .editorconfig! -MAX_LINE_LEN = 100 +MAX_LINE_LEN = 170 def main():