Enable checking the ‘tls’ package on CI

This commit is contained in:
mrkkrp 2019-09-06 19:22:15 +02:00 committed by Mark Karpov
parent a3a93ebfef
commit d4761bf425
4 changed files with 16 additions and 2 deletions

View File

@ -0,0 +1,6 @@
foo = bar
where
baz = return (quux) -- Foo
-- Bar
meme = gege

View File

@ -0,0 +1,6 @@
foo = bar
where
baz = return (quux) -- Foo
-- Bar
meme = gege

View File

@ -53,6 +53,7 @@ in {
"servant"
"servant-server"
"tensorflow"
"tls"
"yesod-core"
# Comment idempotence issue
@ -68,7 +69,6 @@ in {
# "pandoc"
# "pipes"
# "stack"
# "tls"
# Missing language extension

View File

@ -218,7 +218,9 @@ spit dirty printingComments txt' = do
, scDirtyLine = scDirtyLine sc || dirty
, scRequestedDelimiter = RequestedNothing
, scLastCommentSpan =
if printingComments
-- NOTE If there are pending comments, do not reset last comment
-- location.
if printingComments || (not . null . scPendingComments) sc
then scLastCommentSpan sc
else Nothing
}