Go to file
2014-07-26 12:12:12 +02:00
bin
checkers Merged logilab/pylint into default 2014-07-25 18:14:11 +02:00
debian import modutils from astroid, it has been backported there 2014-07-23 17:43:52 +02:00
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 Document the fact that Pylint does not import modules. Closes issue #249. 2014-05-20 16:47:18 +03:00
elisp Updated FSF address. 2014-02-23 15:02:47 -08:00
examples regenerated example pylintrc and man page (though they should be removed from the repo at some point) 2014-07-25 17:27:29 +02:00
man regenerated example pylintrc and man page (though they should be removed from the repo at some point) 2014-07-25 17:27:29 +02:00
pyreverse linting pylint 2014-07-25 17:23:37 +02:00
reporters use a set instead of a dict with dumb values 2014-07-25 15:06:21 +02:00
test Merged logilab/pylint into default 2014-07-25 18:14:11 +02:00
__init__.py Updated FSF address. 2014-02-23 15:02:47 -08:00
__main__.py Run as a python module 'python -m pylint'. 2013-09-22 12:06:37 +03:00
__pkginfo__.py go back to dependency on astroid 1.1 since it breaks tox tests, even when configured to grab astroid from hg :( 2014-07-24 09:40:35 +02:00
.hgignore Improved generating docs from Makefile. 2014-07-26 11:36:57 +02:00
.hgtags Added tag pylint-1.2 for changeset ee1190f87c82 2014-04-22 11:14:50 +02:00
ChangeLog Don't emit 'missing-docstring' when the actual docstring uses .format. Closes issue #281. 2014-07-25 18:06:10 +02:00
config.py Use the proper mode for pickle when opening and writing the stats file. Closes issue #148. 2014-07-24 14:51:23 +02:00
CONTRIBUTORS.txt Give credit to recent contributor. Also, fix the news entry from the ChangeLog. 2014-07-08 16:23:19 +03:00
COPYING
DEPENDS Update dependency. 2014-02-14 14:39:43 +02:00
epylint.py linting pylint 2014-07-25 17:23:37 +02:00
gui.py linting pylint 2014-07-25 17:23:37 +02:00
interfaces.py Updated FSF address. 2014-02-23 15:02:47 -08:00
lint.py linting pylint 2014-07-25 17:23:37 +02:00
Makefile Another fix for generating docs from Makefile - added install sphinx. 2014-07-26 12:12:12 +02:00
MANIFEST.in Added a new test suite for functional tests. 2014-07-24 11:36:12 +02:00
README Fix code-quality mail list links. 2013-12-30 08:32:19 +02:00
README.Python3 astng has been renamed astroid 2013-06-17 15:06:48 +02:00
setup.cfg
setup.py linting pylint 2014-07-25 17:23:37 +02:00
testutils.py linting pylint 2014-07-25 17:23:37 +02:00
tox.ini [test] tox use astroid from bitbucket, not the lastest released version 2014-04-02 08:16:50 +02:00
utils.py linting pylint 2014-07-25 17:23:37 +02:00

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 https://mail.python.org/mailman/listinfo/code-quality/
or read the archives at https://mail.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