Go to file
2013-11-21 10:02:37 +01:00
bin use env for pyreverse as for others 2012-10-05 15:54:14 +02:00
checkers
debian prepare 1.0 2013-08-02 15:05:03 +02:00
debian.intrepid tries to get to compile on ubuntu 2009-08-27 17:07:18 +02:00
debian.jaunty
debian.lenny
debian.sid fix a few places where astng was still referenced instead of astroid + bad logilab-astroid in pkginfo dependencies 2013-06-21 07:59:31 +02:00
doc [doc] backport a3c82aa9fa/doc/run.rst 2013-11-21 10:02:37 +01:00
elisp Replace pylint.el with Ian Eure's version. Closes #20693 2012-11-12 13:35:48 +01:00
examples Extend the line length check. 2013-06-17 19:57:05 +02:00
man
pyreverse
reporters Removed commented-out lines 2013-09-07 17:28:35 +01:00
test
__init__.py
__main__.py Run as a python module 'python -m pylint'. 2013-09-22 12:06:37 +03:00
__pkginfo__.py
.hgignore
.hgtags
ChangeLog
config.py Do not try to create the PYLINTHOME directory on import of pylint.config, since it might fail and lead to spurious warnings. Instead, create it when it is needed. 2013-11-20 15:01:02 -08:00
CONTRIBUTORS.txt
COPYING
DEPENDS
epylint.py epylint command line was omitting options 2013-10-07 12:17:27 +02:00
gui.py Updated GUI reporter to use Message object. 2013-09-07 17:23:36 +01:00
interfaces.py
lint.py [lint] rename get_astroid into get_ast 2013-10-25 15:30:25 +02:00
MANIFEST.in
README
README.Python3
setup.cfg
setup.py
testutils.py
utils.py

README for Pylint - http://www.pylint.org/
==========================================

Pylint is a Python source code analyzer which looks for programming errors,
helps enforcing a coding standard and sniffs for some code smells (as defined in
Martin Fowler's Refactoring book).

Pylint has many rules enabled by default, way too much to silence them all on a
minimally sized program. It's highly configurable and handle pragmas to control
it from within your code. Additionally, it is possible to write plugins to add
your own checks.

It's a free software distributed under the GNU Public Licence.

Development is hosted on bitbucket: https://bitbucket.org/logilab/pylint/

You can use the code-quality@python.org mailing list to discuss about
Pylint. Subscribe at http://lists.python.org/mailman/listinfo/code-quality
or read the archives at http://lists.python.org/pipermail/code-quality/

Install
-------

Pylint requires the astroid (the later the better; formerly known as
logilab-astng) and logilab-common (version >= 0.53) packages.

* https://bitbucket.org/logilab/astroid
* http://www.logilab.org/projects/common

From the source distribution, extract the tarball and run ::

    python setup.py install

You'll have to install dependencies in a similar way. For debian and
rpm packages, use your usual tools according to your Linux distribution.

More information about installation and available distribution format
may be found in the user manual in the *doc* subdirectory.

Documentation
-------------

Look in the doc/ subdirectory or at http://docs.pylint.org

Pylint is shipped with following additional commands:

* pyreverse: an UML diagram generator
* symilar: an independent similarities checker
* epylint: Emacs and Flymake compatible Pylint
* pylint-gui: a graphical interface