From 0cbe97ee2dd9168ddca0e0ed38b536be3b37f344 Mon Sep 17 00:00:00 2001 From: Olof Johansson Date: Sat, 27 Apr 2013 13:51:23 +0200 Subject: [PATCH] Disable pylint W0511 (TODO/FIXME warnings) --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7aa4419..1577c8d 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,9 @@ BINDIR=$(PREFIX)/bin PYTHON=/usr/bin/env python export PYTHONPATH=lib +# Disable convention, refactor, and TODO warnings +PYLINT_OPTS = -d C -d R -d W0511 + install: svtplay-dl install -d $(DESTDIR)$(BINDIR) install -m 755 svtplay-dl $(DESTDIR)$(BINDIR) @@ -25,4 +28,4 @@ cover: sh run-tests.sh -C pylint: - find lib -name '*.py' -a '!' -path '*/tests/*' | xargs pylint -d C -d R + find lib -name '*.py' -a '!' -path '*/tests/*' | xargs pylint $(PYLINT_OPTS)