From acb1c85ccd760b514d40f22021a633fa990f5152 Mon Sep 17 00:00:00 2001 From: Chris Oakman Date: Thu, 17 Oct 2024 17:19:34 -0500 Subject: [PATCH] WIP: add failing test case --- test_format/format.eno | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/test_format/format.eno b/test_format/format.eno index 97b9891..e755d80 100644 --- a/test_format/format.eno +++ b/test_format/format.eno @@ -1700,3 +1700,19 @@ false} "aaa" --Expected + +# GitHub Issue #123 - eol commas inside comments + +> https://github.com/oakmac/standard-clojure-style-js/issues/123 + +--Input +;; foo, bar, +;; biz, baz, +wizzle +--Input + +--Expected +;; foo, bar, +;; biz, baz, +wizzle +--Expected