[totem] plugins: Ignore missing docstrings and TODO comment warnings from pylint
- From: Philip Withnall <pwithnall src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [totem] plugins: Ignore missing docstrings and TODO comment warnings from pylint
- Date: Tue, 5 Apr 2011 00:16:52 +0000 (UTC)
commit c43a55d9238135a203e5c1f1a9afd2fdf4b40504
Author: Philip Withnall <philip tecnocode co uk>
Date: Tue Apr 5 01:13:10 2011 +0100
plugins: Ignore missing docstrings and TODO comment warnings from pylint
They're not important at the moment, and there're too many of them to
reasonably fix at the moment.
Most Python plugins now pass `make check`. The few that don't (OpenSubtitles,
for example) need a little more refactoring, which will be done separately.
Closes: bgo#645739
src/plugins/Makefile.plugins | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/plugins/Makefile.plugins b/src/plugins/Makefile.plugins
index c121c58..c670c65 100644
--- a/src/plugins/Makefile.plugins
+++ b/src/plugins/Makefile.plugins
@@ -33,7 +33,7 @@ plugin_libadd = \
check-pylint: $(plugin_PYTHON)
@exitstatus=0; \
for py in $^; do \
- pylint -i y $$py; \
+ pylint -i y -d C0111 -d W0511 $$py; \
\
newexitstatus=$$?; \
if [ $$exitstatus == 0 ]; then \
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]