Thank you for the Haskell fix! I found another issue (not a bug but could be handled better):
Running =org-lint= on an Org file containing #+NAME:Hello #+BEGIN_SRC emacs-lisp :exports code #+END_SRC I get the following error: #+begin_quote Debugger entered--Lisp error: (search-failed "^[ \11]*#\\+[A-Za-z]+: +Hello *$") #+end_quote The code is faulty because there should be a space between #+NAME: and Hello, like so: #+NAME: Hello #+BEGIN_SRC emacs-lisp :exports code #+END_SRC However, this should probably be reported by =org-lint= as an Org syntax error, and not lead to an error when executing =org-lint=. What do you think? Thank you, Dominik