1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-27 13:44:14 +01:00

Disable pylint W0511 (TODO/FIXME warnings)

This commit is contained in:
Olof Johansson 2013-04-27 13:51:23 +02:00
parent 73694a1703
commit 0cbe97ee2d

View File

@ -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)