2006-05-15 20:48:08 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Errors that we may fix in the future
|
|
|
|
#
|
|
|
|
# C0301 Line length
|
|
|
|
# W0201 Attribute defined outside __init__
|
|
|
|
# R0201 Method could be a function
|
|
|
|
TODO="C0301,W0201,R0201"
|
|
|
|
|
|
|
|
# Errors we don't like
|
|
|
|
#
|
|
|
|
# W0613 Unused argument (glib signals)
|
|
|
|
# W0511 - FIXME/TODO/XXX
|
2006-06-01 00:01:24 +02:00
|
|
|
# W0302 - Too many lines in module
|
|
|
|
# I0011 - Locally disabled messages
|
|
|
|
DISABLE="W0613,W0511,W0612,W0302,I0011"
|
2006-05-15 20:48:08 +02:00
|
|
|
|
|
|
|
MSGS="$TODO,$DISABLE"
|
|
|
|
ARG="sugar"
|
|
|
|
|
|
|
|
pylint \
|
|
|
|
--disable-all \
|
|
|
|
--include-ids=y \
|
|
|
|
--enable-variables=y \
|
|
|
|
--enable-exceptions=y \
|
|
|
|
--enable-miscellaneous=y \
|
|
|
|
--enable-format=y \
|
|
|
|
--enable-classes=y \
|
|
|
|
--disable-msg=$MSGS \
|
|
|
|
--reports=n \
|
|
|
|
--enable-metrics=n \
|
|
|
|
--indent-string=" " \
|
|
|
|
--ignore="SVGdraw.py" \
|
|
|
|
$ARG
|