Go to file
2019-03-19 10:31:27 +01:00
.github Update PULL_REQUEST_TEMPLATE.md 2018-08-22 11:08:47 +02:00
appveyor
bin
debian Relicense the logo as CC-BY-SA-4.0 (#2786) 2019-03-05 08:29:42 +01:00
doc Make `len-as-condition only fire when a len(x)` call is made without an explicit comparison 2019-03-19 10:16:07 +01:00
elisp
examples Add reference to R0916 to max-bool-expr 2019-03-19 10:31:27 +01:00
man Removed double space from man page 2018-08-08 00:44:34 -06:00
pylint Add reference to R0916 to max-bool-expr 2019-03-19 10:31:27 +01:00
.copyrite_aliases Add my copyrite alias (#2348) 2018-07-26 08:35:49 +02:00
.coveragerc
.gitignore add mypy_cache in gitignore 2018-07-17 14:50:56 +05:30
.pre-commit-config.yaml Exclude the relevant directories from black 2018-09-18 09:19:43 +02:00
.travis.yml Add 3.8-dev in Travis 2019-03-05 10:12:37 +01:00
appveyor.yml
ChangeLog Make `len-as-condition only fire when a len(x)` call is made without an explicit comparison 2019-03-19 10:16:07 +01:00
CONTRIBUTORS.txt Add reference to R0916 to max-bool-expr 2019-03-19 10:31:27 +01:00
COPYING
DEPENDS
Makefile Remove obsolete clobber command 2018-08-21 10:35:25 +02:00
MANIFEST.in Add pytest.ini to MANIFEST 2018-09-20 09:17:31 +02:00
pylintrc Reformat the code with black 2018-09-17 09:07:42 +02:00
pytest.ini
README.rst Relicense the logo as CC-BY-SA-4.0 (#2786) 2019-03-05 08:29:42 +01:00
setup.cfg
setup.py
tox.ini Expose Python 3.8 in tox 2019-03-05 10:12:37 +01:00

README for Pylint - http://pylint.pycqa.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

.. image:: https://coveralls.io/repos/github/PyCQA/pylint/badge.svg?branch=master
    :target: https://coveralls.io/github/PyCQA/pylint?branch=master


.. image:: https://img.shields.io/pypi/v/pylint.svg
    :alt: Pypi Package version
    :target: https://pypi.python.org/pypi/pylint

.. image:: https://readthedocs.org/projects/pylint/badge/?version=latest
    :target: http://pylint.readthedocs.io/en/latest/?badge=latest
    :alt: Documentation Status

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
    :target: https://github.com/ambv/black

======
Pylint
======

**It's not just a linter that annoys you!**

Pylint is a Python static code analysis tool which looks for programming errors,
helps enforcing a coding standard, sniffs for code smells and offers simple refactoring
suggestions.

It's highly configurable, having special pragmas to control its errors and warnings
from within your code, as well as from an extensive configuration file.
It is also possible to write your own plugins for adding your own checks or for
extending pylint in one way or another.

It's a free software distributed under the GNU General Public Licence unless
otherwise specified.

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/

Pull requests are amazing and most welcome.

Install
-------

Pylint can be simply installed by running::

    pip install pylint

If you are using Python 3.6+, upgrade to get full support for your version::

    pip install pylint --upgrade

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

    python setup.py install
    

Do make sure to do the same for astroid, which is used internally by pylint.

For debian and rpm packages, use your usual tools according to your Linux distribution.

More information about installation and available distribution format
can be found here_.

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

The documentation lives at http://pylint.pycqa.org/.

Pylint is shipped with following additional commands:

* pyreverse: an UML diagram generator
* symilar: an independent similarities checker
* epylint: Emacs and Flymake compatible Pylint


Testing
-------

We use tox_ for running the test suite. You should be able to install it with::

    pip install tox pytest


To run the test suite for a particular Python version, you can do::

    tox -e py37


For more detailed information, check the documentation.

.. _here: http://pylint.pycqa.org/en/latest/user_guide/installation.html
.. _tox: https://tox.readthedocs.io/en/latest/

License
-------

pylint is, with a few exceptions listed below, `GPLv2 <COPYING>`_.

The icon files are licensed under the `CC BY-SA 4.0 <https://creativecommons.org/licenses/by-sa/4.0/>`_ license:

- `doc/logo.png <doc/logo.png>`_
- `doc/logo.svg <doc/logo.svg>`_