Disable TODO comments in paver quality only

This commit is contained in:
David Baumgold
2014-11-03 11:36:24 -05:00
parent 24ad0c31ea
commit 58fd091823
2 changed files with 5 additions and 4 deletions

View File

@@ -30,7 +30,9 @@ def run_pylint(options):
# This makes the folder if it doesn't already exist.
report_dir = (Env.REPORT_DIR / system).makedirs_p()
flags = '-E' if errors else ''
flags = ["--disable=fixme"]
if errors:
flags.append("--errors-only")
apps = [system]
@@ -51,7 +53,7 @@ def run_pylint(options):
"{pythonpath_prefix} pylint {flags} -f parseable {apps} | "
"tee {report_dir}/pylint.report".format(
pythonpath_prefix=pythonpath_prefix,
flags=flags,
flags=" ".join(flags),
apps=apps_list,
report_dir=report_dir
)

View File

@@ -41,8 +41,7 @@ disable=
# W0142: Used * or ** magic
# R0921: Abstract class not referenced
# R0922: Abstract class is only referenced 1 times
# W0511: TODO comments
I0011,C0301,W0141,W0142,R0921,R0922,W0511,
I0011,C0301,W0141,W0142,R0921,R0922,
# Django makes classes that trigger these
# W0232: Class has no __init__ method