From e9c356be203c738e4b2323907dcc9d446a1d3fe1 Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Wed, 9 Aug 2023 21:41:59 +0200 Subject: [PATCH] fail on TODO/FIXME --- scripts/check-syntax.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/check-syntax.sh b/scripts/check-syntax.sh index f533e88..ad22953 100755 --- a/scripts/check-syntax.sh +++ b/scripts/check-syntax.sh @@ -35,6 +35,9 @@ fi echo "=> pyflakes version:" pyflakes --version +# checking for TODO/FIXME +grep -r 'TODO\|FIXME' + # PEP8 tests # W503: Line break occurred before a binary operator # W504: Line break occurred after a binary operator