Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pylint.sh
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2006-05-12 21:42:40 (GMT)
committer Dan Williams <dcbw@redhat.com>2006-05-12 21:42:40 (GMT)
commitae2eb70b6c534b36835e56d4c28ed4d82110df89 (patch)
treebfa2b7ef522c4795d87912ddb299f234e3c5c49a /pylint.sh
parentacf29ef25e52a18470084f5afa4bb97b8a57885f (diff)
Add import capability to SVGdraw.py
Diffstat (limited to 'pylint.sh')
-rwxr-xr-xpylint.sh32
1 files changed, 0 insertions, 32 deletions
diff --git a/pylint.sh b/pylint.sh
deleted file mode 100755
index 4de5a50..0000000
--- a/pylint.sh
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/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
-DISABLE="W0613,W0511"
-
-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