From 816a11869fae2ec34027e55e059713060dd7f8e3 Mon Sep 17 00:00:00 2001 From: ee7 <45465154+ee7@users.noreply.github.com> Date: Fri, 7 Jan 2022 11:28:46 +0100 Subject: [PATCH] lint: advise that warnings may not become errors (#490) Before this commit, configlet advised that warnings in the `configlet lint` output would definitely become errors in the future. However, the website was updated to gracefully handle the cases that configlet warned about. We may no longer want the warnings to become errors, so let's communicate that. --- src/lint/lint.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lint/lint.nim b/src/lint/lint.nim index cb1dee6c..5c341843 100644 --- a/src/lint/lint.nim +++ b/src/lint/lint.nim @@ -56,6 +56,6 @@ For more information on resolving the problems, please see the documentation: echo "" const msg = """ Configlet produced at least one warning. - These warnings will become errors in a future configlet release (at the end of October 2021). + These warnings might become errors in a future configlet release. For more information, please see the documentation:""".unindent() warn(msg, url, doubleFinalNewline = false)