summaryrefslogtreecommitdiff
path: root/announce.txt
blob: 961ecea46faae763317be2f0042e3769f0a8dae7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Hi there!


What is pylint ?
----------------

Pylint is a python tool that checks if a module satisfies a coding
standard. Pylint can be seen as another pychecker since nearly all
tests you can do with pychecker can also be done with Pylint. But
Pylint offers some more features, like checking line-code's length,
checking if variable names are well-formed according to your coding
standard, or checking if declared interfaces are truly implemented,
and much more (see http://www.logilab.org/projects/pylint/ for the
complete check list). The big advantage with Pylint is that it is
highly configurable, customizable, and you can easily write a small
plugin to add a personal feature.

The usage it quite simple :

  $ pylint mypackage.mymodule


This command will output all the errors and warnings related to the
tested code (here : mypackage.mymodule), will dump a little summary at
the end, and will give a mark to the tested code.

Pylint is free software distributed under the GNU Public Licence.


Home page
---------
http://www.logilab.org/project/pylint
http://www.logilab.org/project/logilab-astng

Download
--------
http://www.logilab.org/ftp/pub/pylint
http://www.logilab.org/ftp/pub/logilab/astng

Mailing list
------------
python-projects@logilab.org (moderated)

Register, archive on http://lists.logilab.org/mailman/listinfo/python-projects

Enjoy!