scripts/pylint/pylintrc
Tue, 28 Apr 2009 12:47:06 +0200 Pawel Solyga Remove E1103 and E1101 errors from ignore list in pylintrc file.
Fri, 03 Apr 2009 17:27:31 +0000 Pawel Solyga Disable some messages in pylintrc and disable cyclic imports check in silent mode of do_pylint.sh.
Wed, 04 Mar 2009 16:44:21 +0000 Pawel Solyga Update pylintrc file. Now function and method names can by up to 40 characters (30 was maximum previously).
Tue, 20 Jan 2009 21:00:55 +0000 Pawel Solyga Disable R0801 messages in pylintrc. R0801 messages indicates that a set of similar lines has been detected among multiple file. This usually means that the code should be refactored to avoid this duplication but in our case it's useless since it shows a lot of imports code or authors.
Tue, 20 Jan 2009 16:03:55 +0000 Pawel Solyga Disable R0201 message in pylintrc since we allow for that kind of methods. R0201 tells us that method could be a function. Used when a method doesn't use its bound instance, and so could be written as a function.
Sun, 19 Oct 2008 13:06:20 +0000 Pawel Solyga Add pylint configuration file (pylintrc) and do_pylint.sh script which runs pylint checkers on Melange code using pylintrc file as config. do_pylint.sh as default shows additional information like reports, TODOs, code similarities and unused imports, but you can run it in silent mode (--silent) which disables all of that. The only problem with unused imports in pylint right now is that it doesn't work in the situation described in last example at http://code.google.com/p/soc/wiki/PythonStyleGuide#Packages, so sometimes we get unused import soc when we actually shouldn't. However this can be fixed by writing pylint plugins (our own checkers) in future.
less more (0) tip