Go to file
2016-03-28 18:46:48 +01:00
appveyor
bin Fixed Windows startup scripts so they redirect to the executable files generated by setuptools. 2016-03-02 23:15:40 -04:00
debian Add new entry in the deb changelog. 2015-02-15 12:12:46 +02:00
debian.sid
doc Update intro.rst 2016-03-02 17:03:49 -08:00
elisp
examples
man Fix typo in the symilar manpage 2016-03-20 14:05:06 +01:00
pylint epylint.py_run does not crash on big files, using .communicate() instead of .wait() 2016-03-28 18:46:48 +01:00
.gitignore
.travis.yml Basic travis support. 2015-12-16 17:25:28 +02:00
appveyor.yml
ChangeLog epylint.py_run does not crash on big files, using .communicate() instead of .wait() 2016-03-28 18:46:48 +01:00
CONTRIBUTORS.txt Add ChangeLog entry and new contributor. 2016-03-16 11:20:46 +00:00
COPYING
DEPENDS
Makefile
MANIFEST.in
pylintrc Make list of contextmanager decorators configurable. 2016-02-02 14:13:13 -08:00
README.rst No need to mention hg anymore in README 2016-03-21 18:48:24 +00:00
setup.cfg Support wheel packaging format for PyPi. Closes issue #334. 2014-10-01 00:38:42 -07:00
setup.py
tox.ini Basic travis support. 2015-12-16 17:25:28 +02:00

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

.. image:: https://travis-ci.org/PyCQA/pylint.svg?branch=master
    :target: https://travis-ci.org/PyCQA/pylint

.. image:: https://ci.appveyor.com/api/projects/status/rbvwhakyj1y09atb/branch/master?svg=true
    :alt: AppVeyor Build Status
    :target: https://ci.appveyor.com/project/PCManticore/pylint

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 General Public Licence.

Development is hosted on GitHub: https://github.com/PyCQA/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 astroid package (the later the better).

* https://github.com/PyCQA/astroid

Installation should be as simple as ::

    python -m pip install astroid


If you want to install from a source distribution, extract the tarball and run
the following commands ::

    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