scripts/pylint/do_pylint.sh
changeset 2071 0aa24d8655ac
parent 853 062290a3b3cf
child 2328 e077dc264dff
--- a/scripts/pylint/do_pylint.sh	Fri Apr 03 17:23:53 2009 +0000
+++ b/scripts/pylint/do_pylint.sh	Fri Apr 03 17:27:31 2009 +0000
@@ -17,6 +17,7 @@
 # To disable some of the checks use options listed below:
 # disable unused imports: --disable-msg=W0611
 # disable TODO: --disable-msg=W0511
+# disable cyclic imports: --disable-msg=R0401
 # disable report: --reports=no
 # disable similarity check: --disable-checker=similarities
 #
@@ -27,7 +28,7 @@
 ARGS=( "$@" )
 
 if [ "$1" == "--silent" ]; then
-  SILENT_ARGS="--disable-msg=W0611 --disable-msg=W0511 --reports=no --disable-checker=similarities"
+  SILENT_ARGS="--disable-msg=W0511,R0401 --reports=no --disable-checker=similarities"
   ARGS[0]=""
 fi