third_party.pylibs.pylint.src/man/pylint.1

253 lines
12 KiB
Groff
Raw Normal View History

2008-02-07 08:26:40 +00:00
.TH pylint 1 "2008-1-14" pylint
2006-04-26 10:48:09 +00:00
.SH NAME
.B pylint
\- python code static checker
.SH SYNOPSIS
.B pylint
[
.I OPTIONS
] [
.I <arguments>
]
.SH DESCRIPTION
.B 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 can be seen as another PyChecker since nearly all tests you
can do with PyChecker can also be done with Pylint. However, Pylint
offers some more features, like checking length of lines of code,
checking if variable names are well-formed according to your coding
standard, or checking if declared interfaces are truly implemented,
and much more.
Additionally, it is possible to write plugins to add your own checks.
.SH OPTIONS
.IP "--version"
show program's version number and exit
.IP "--help, -h"
show this help message and exit
.SH MASTER
.IP "--rcfile=<file>"
Specify a configuration file.
2007-03-07 09:15:39 +00:00
.IP "--init-hook=<code>"
Python code to execute, usually for sys.path manipulation such as pygtk.require().
.IP "--rpython-mode"
enable the rpython checker which is disabled by default
2006-08-10 14:46:20 +00:00
.IP "--errors-only, -e"
2006-04-26 10:48:09 +00:00
In debug mode, checkers without error messages are disabled and for others, only the ERROR messages are displayed, and no reports are done by default
.IP "--profile=<y_or_n>"
2007-03-07 09:15:39 +00:00
Profiled execution. [current: %default]
2006-04-26 10:48:09 +00:00
.IP "--ignore=<file>"
2007-03-07 09:15:39 +00:00
Add <file or directory> to the black list. It should be a base name, not a path. You may set this option multiple times. [current: %default]
2006-04-26 10:48:09 +00:00
.IP "--persistent=<y_or_n>"
2007-03-07 09:15:39 +00:00
Pickle collected data for later comparisons. [current: %default]
2006-04-26 10:48:09 +00:00
.IP "--cache-size=<size>"
2007-03-07 09:15:39 +00:00
Set the cache size for astng objects. [current: %default]
2006-04-26 10:48:09 +00:00
.IP "--load-plugins=<modules>"
2007-03-07 09:15:39 +00:00
List of plugins (as comma separated values of python modules names) to load, usually to register additional checkers. [current: %default]
2006-04-26 10:48:09 +00:00
2006-08-10 14:46:20 +00:00
.SH COMMANDS
.IP "--help-msg=<msg-id>"
Display a help message for the given message id and exit. The value may be a comma separated list of message ids.
.IP "--list-msgs"
Generate pylint's full documentation.
.IP "--generate-rcfile"
Generate a sample configuration file according to the current configuration. You can put other options before this one to get them in the generated configuration.
.IP "--generate-man"
Generate pylint's man page.
.SH MESSAGES CONTROL
.IP "--enable-checker=<checker ids>"
2008-02-07 08:26:40 +00:00
Enable only checker(s) with the given id(s). This option conflicts with the disable-checker option
2006-08-10 14:46:20 +00:00
.IP "--disable-checker=<checker ids>"
2008-02-07 08:26:40 +00:00
Enable all checker(s) except those with the given id(s). This option conflicts with the enable-checker option
2006-08-10 14:46:20 +00:00
.IP "--enable-msg-cat=<msg cats>"
Enable all messages in the listed categories.
.IP "--disable-msg-cat=<msg cats>"
Disable all messages in the listed categories.
.IP "--enable-msg=<msg ids>"
Enable the message(s) with the given id(s).
.IP "--disable-msg=<msg ids>"
Disable the message(s) with the given id(s).
2006-04-26 10:48:09 +00:00
.SH REPORTS
2007-03-07 09:15:39 +00:00
.IP "--output-format=<format>, -f <format>"
set the output format. Available formats are text, parseable, colorized, msvs (visual studio) and html [current: %default]
.IP "--include-ids=<y_or_n>, -i <y_or_n>"
Include message's id in output [current: %default]
2006-04-26 10:48:09 +00:00
.IP "--files-output=<y_or_n>"
2007-03-07 09:15:39 +00:00
Put messages in a separate file for each module / package specified on the command line instead of printing them on stdout. Reports (if any) will be written in a file name "pylint_global.[txt|html]". [current: %default]
.IP "--reports=<y_or_n>, -r <y_or_n>"
Tells wether to display a full report or only the messages [current: %default]
2006-04-26 10:48:09 +00:00
.IP "--evaluation=<python_expression>"
2007-03-07 09:15:39 +00:00
Python expression which should return a note less than 10 (10 is the highest note).You have access to the variables errors warning, statement which respectivly contain the number of errors / warnings messages and the total number of statements analyzed. This is used by the global evaluation report (R0004). [current: %default]
2006-04-26 10:48:09 +00:00
.IP "--comment=<y_or_n>"
2007-03-07 09:15:39 +00:00
Add a comment according to your evaluation note. This is used by the global evaluation report (R0004). [current: %default]
2006-04-26 10:48:09 +00:00
.IP "--enable-report=<rpt ids>"
2006-08-10 14:46:20 +00:00
Enable the report(s) with the given id(s).
2006-04-26 10:48:09 +00:00
.IP "--disable-report=<rpt ids>"
2006-08-10 14:46:20 +00:00
Disable the report(s) with the given id(s).
2006-08-10 13:49:01 +00:00
.SH BASIC
2006-04-26 10:48:09 +00:00
.IP "--required-attributes=<attributes>"
2007-03-07 09:15:39 +00:00
Required attributes for module, separated by a comma [current: %default]
2006-04-26 10:48:09 +00:00
.IP "--no-docstring-rgx=<regexp>"
2007-03-07 09:15:39 +00:00
Regular expression which should only match functions or classes name which do not require a docstring [current: %default]
2006-04-26 10:48:09 +00:00
.IP "--module-rgx=<regexp>"
2007-03-07 09:15:39 +00:00
Regular expression which should only match correct module names [current: %default]
2006-04-26 10:48:09 +00:00
.IP "--const-rgx=<regexp>"
2007-03-07 09:15:39 +00:00
Regular expression which should only match correct module level names [current: %default]
2006-04-26 10:48:09 +00:00
.IP "--class-rgx=<regexp>"
2007-03-07 09:15:39 +00:00
Regular expression which should only match correct class names [current: %default]
2006-04-26 10:48:09 +00:00
.IP "--function-rgx=<regexp>"
2007-03-07 09:15:39 +00:00
Regular expression which should only match correct function names [current: %default]
2006-04-26 10:48:09 +00:00
.IP "--method-rgx=<regexp>"
2007-03-07 09:15:39 +00:00
Regular expression which should only match correct method names [current: %default]
2006-04-26 10:48:09 +00:00
.IP "--attr-rgx=<regexp>"
2007-03-07 09:15:39 +00:00
Regular expression which should only match correct instance attribute names [current: %default]
2006-04-26 10:48:09 +00:00
.IP "--argument-rgx=<regexp>"
2007-03-07 09:15:39 +00:00
Regular expression which should only match correct argument names [current: %default]
2006-04-26 10:48:09 +00:00
.IP "--variable-rgx=<regexp>"
2007-03-07 09:15:39 +00:00
Regular expression which should only match correct variable names [current: %default]
2006-04-26 10:48:09 +00:00
.IP "--inlinevar-rgx=<regexp>"
2007-03-07 09:15:39 +00:00
Regular expression which should only match correct list comprehension / generator expression variable names [current: %default]
2006-04-26 10:48:09 +00:00
.IP "--good-names=<names>"
2007-03-07 09:15:39 +00:00
Good variable names which should always be accepted, separated by a comma [current: %default]
2006-04-26 10:48:09 +00:00
.IP "--bad-names=<names>"
2007-03-07 09:15:39 +00:00
Bad variable names which should always be refused, separated by a comma [current: %default]
2006-04-26 10:48:09 +00:00
.IP "--bad-functions=<builtin function names>"
2007-03-07 09:15:39 +00:00
List of builtins function names that should not be used, separated by a comma [current: %default]
2006-04-26 10:48:09 +00:00
2006-08-10 14:46:20 +00:00
.SH CLASSES
.IP "--ignore-iface-methods=<method names>"
2007-03-07 09:15:39 +00:00
List of interface methods to ignore, separated by a comma. This is used for instance to not check methods defines in Zope's Interface base class. [current: %default]
2006-08-10 14:46:20 +00:00
.IP "--defining-attr-methods=<method names>"
2007-03-07 09:15:39 +00:00
List of method names used to declare (i.e. assign) instance attributes. [current: %default]
2006-04-26 10:48:09 +00:00
2006-08-10 13:49:01 +00:00
.SH DESIGN
.IP "--max-args=<int>"
2007-03-07 09:15:39 +00:00
Maximum number of arguments for function / method [current: %default]
2006-08-10 13:49:01 +00:00
.IP "--max-locals=<int>"
2007-03-07 09:15:39 +00:00
Maximum number of locals for function / method body [current: %default]
2006-08-10 13:49:01 +00:00
.IP "--max-returns=<int>"
2007-03-07 09:15:39 +00:00
Maximum number of return / yield for function / method body [current: %default]
2006-08-10 13:49:01 +00:00
.IP "--max-branchs=<int>"
2007-03-07 09:15:39 +00:00
Maximum number of branch for function / method body [current: %default]
2006-08-10 13:49:01 +00:00
.IP "--max-statements=<int>"
2007-03-07 09:15:39 +00:00
Maximum number of statements in function / method body [current: %default]
2006-08-10 13:49:01 +00:00
.IP "--max-parents=<num>"
2007-03-07 09:15:39 +00:00
Maximum number of parents for a class (see R0901). [current: %default]
2006-08-10 13:49:01 +00:00
.IP "--max-attributes=<num>"
2007-03-07 09:15:39 +00:00
Maximum number of attributes for a class (see R0902). [current: %default]
2006-08-10 13:49:01 +00:00
.IP "--min-public-methods=<num>"
2007-03-07 09:15:39 +00:00
Minimum number of public methods for a class (see R0903). [current: %default]
2006-08-10 13:49:01 +00:00
.IP "--max-public-methods=<num>"
2007-03-07 09:15:39 +00:00
Maximum number of public methods for a class (see R0904). [current: %default]
2006-04-26 10:48:09 +00:00
.SH FORMAT
.IP "--max-line-length=<int>"
2007-03-07 09:15:39 +00:00
Maximum number of characters on a single line. [current: %default]
2006-04-26 10:48:09 +00:00
.IP "--max-module-lines=<int>"
2007-03-07 09:15:39 +00:00
Maximum number of lines in a module [current: %default]
2006-04-26 10:48:09 +00:00
.IP "--indent-string=<string>"
2007-03-07 09:15:39 +00:00
String used as indentation unit. This is usually " " (4 spaces) or "\t" (1 tab). [current: %default]
2006-04-26 10:48:09 +00:00
2006-08-10 14:46:20 +00:00
.SH IMPORTS
.IP "--deprecated-modules=<modules>"
2007-03-07 09:15:39 +00:00
Deprecated modules which should not be used, separated by a comma [current: %default]
2006-08-10 14:46:20 +00:00
.IP "--import-graph=<file.dot>"
2007-03-07 09:15:39 +00:00
Create a graph of every (i.e. internal and external) dependencies in the given file (report R0402 must not be disabled) [current: %default]
2006-08-10 14:46:20 +00:00
.IP "--ext-import-graph=<file.dot>"
2007-03-07 09:15:39 +00:00
Create a graph of external dependencies in the given file (report R0402 must not be disabled) [current: %default]
2006-08-10 14:46:20 +00:00
.IP "--int-import-graph=<file.dot>"
2007-03-07 09:15:39 +00:00
Create a graph of internal dependencies in the given file (report R0402 must not be disabled) [current: %default]
2006-08-10 14:46:20 +00:00
2006-04-26 10:48:09 +00:00
.SH MISCELLANEOUS
.IP "--notes=<comma separated values>"
2007-03-07 09:15:39 +00:00
List of note tags to take in consideration, separated by a comma. [current: %default]
2006-08-10 14:46:20 +00:00
.SH SIMILARITIES
.IP "--min-similarity-lines=<int>"
2007-03-07 09:15:39 +00:00
Minimum lines number of a similarity. [current: %default]
2006-08-10 14:46:20 +00:00
.IP "--ignore-comments=<y or n>"
2007-03-07 09:15:39 +00:00
Ignore comments when computing similarities. [current: %default]
2006-08-10 14:46:20 +00:00
.IP "--ignore-docstrings=<y or n>"
2007-03-07 09:15:39 +00:00
Ignore docstrings when computing similarities. [current: %default]
2006-08-10 14:46:20 +00:00
.SH TYPECHECK
.IP "--ignore-mixin-members=<y_or_n>"
2007-03-07 09:15:39 +00:00
Tells wether missing members accessed in mixin class should be ignored. A mixin class is detected if its name ends with "mixin" (case insensitive). [current: %default]
2008-02-07 08:26:40 +00:00
.IP "--ignored-classes=<members names>"
List of classes names for which member attributes should not be checked (useful for classes with attributes dynamicaly set). [current: %default]
2006-08-10 14:46:20 +00:00
.IP "--zope=<y_or_n>"
2007-03-07 09:15:39 +00:00
When zope mode is activated, consider the acquired-members option to ignore access to some undefined attributes. [current: %default]
2006-08-10 14:46:20 +00:00
.IP "--acquired-members=<members names>"
2007-03-07 09:15:39 +00:00
List of members which are usually get through zope's acquisition mecanism and so shouldn't trigger E0201 when accessed (need zope=yes to be considered). [current: %default]
2006-08-10 14:46:20 +00:00
.SH VARIABLES
.IP "--init-import=<y_or_n>"
2007-03-07 09:15:39 +00:00
Tells wether we should check for unused import in __init__ files. [current: %default]
2006-08-10 14:46:20 +00:00
.IP "--dummy-variables-rgx=<regexp>"
2007-03-07 09:15:39 +00:00
A regular expression matching names used for dummy variables (i.e. not used). [current: %default]
2006-08-10 14:46:20 +00:00
.IP "--additional-builtins=<comma separated list>"
2007-03-07 09:15:39 +00:00
List of additional names supposed to be defined in builtins. Remember that you should avoid to define new builtins when possible. [current: %default]
2006-04-26 10:48:09 +00:00
.SH ENVIRONMENT VARIABLES
The following environment variables are used :
* PYLINTHOME
path to the directory where data of persistent run will be stored. If not
found, it defaults to ~/.pylint.d/ or .pylint.d (in the current working
2007-03-07 09:15:39 +00:00
directory) . The current PYLINTHOME is /home/syt/.pylint.d.
2006-04-26 10:48:09 +00:00
* PYLINTRC
path to the configuration file. If not found, it will use the first
existant file in ~/.pylintrc, /etc/pylintrc. The current PYLINTRC is
None.
.SH OUTPUT
Using the default text output, the message format is :
MESSAGE_TYPE: LINE_NUM:[OBJECT:] MESSAGE
There are 5 kind of message types :
* (C) convention, for programming standard violation
* (R) refactor, for bad code smell
* (W) warning, for python specific problems
2007-03-07 09:15:39 +00:00
* (E) error, for much probably bugs in the code
2006-04-26 10:48:09 +00:00
* (F) fatal, if an error occured which prevented pylint from doing further processing.
.SH SEE ALSO
/usr/share/doc/pythonX.Y-pylint/
.SH COPYRIGHT
2008-02-07 08:26:40 +00:00
Copyright (c) 2003-2008 Sylvain Thenault (thenault@gmail.com).
Copyright (c) 2003-2008 LOGILAB S.A. (Paris, FRANCE).
2006-04-26 10:48:09 +00:00
http://www.logilab.fr/ -- mailto:contact@logilab.fr
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published
by the Free Software Foundation; either version 2 of the License,
or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston,
MA 02111-1307 USA.
.SH BUGS
Please report bugs on the project's mailing list:
mailto://python-projects@logilab.org
.SH AUTHOR
Sylvain Thenault <sylvain.thenault@logilab.fr>