diff options
author | Michal Nowikowski <godfryd@gmail.com> | 2015-02-27 06:48:24 +0100 |
---|---|---|
committer | Michal Nowikowski <godfryd@gmail.com> | 2015-02-27 06:48:24 +0100 |
commit | fe9dbd9f35776db5900ca1ce066a9feb9bc3840f (patch) | |
tree | dda2f107fdde10e8fbce46ec2773b0fa7a38b847 /man | |
parent | d69656429d7373692607cd8188772b1a73db58ed (diff) | |
download | pylint-git-fe9dbd9f35776db5900ca1ce066a9feb9bc3840f.tar.gz |
Various changes related to docs
- added Changelog to docs
- added list of contributors to docs
- updated CONTRIBUTORS info
- slight formating changes in Changelog
- updated auto-generated man page and example pylintrc
Diffstat (limited to 'man')
-rw-r--r-- | man/pylint.1 | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/man/pylint.1 b/man/pylint.1 index 3a5c3e978..fd12abb6d 100644 --- a/man/pylint.1 +++ b/man/pylint.1 @@ -1,4 +1,4 @@ -.TH pylint 1 "2014-11-4" pylint +.TH pylint 1 "2015-2-27" pylint .SH NAME .B pylint \- python code static checker @@ -44,6 +44,8 @@ Specify a configuration file. Python code to execute, usually for sys.path manipulation such as pygtk.require(). .IP "--errors-only, -E" In error mode, checkers without error messages are disabled and for others, only the ERROR messages are displayed, and no reports are done by default +.IP "--py3k" +In Python 3 porting mode, all checkers will be disabled and only messages emitted by the porting checker will be displayed .IP "--ignore=<file>[,<file>...]" Add files or directories to the blacklist. They should be base names, not paths. [current: CVS] .IP "--persistent=<y_or_n>" @@ -52,6 +54,8 @@ Pickle collected data for later comparisons. [current: yes] List of plugins (as comma separated values of python modules names) to load, usually to register additional checkers. [current: none] .IP "--jobs=<n-processes>, -j <n-processes>" Use multiple processes to speed up Pylint. [current: 1] +.IP "--extension-pkg-whitelist=<pkg[,pkg]>" +A comma-separated list of package or module names from where C extensions may be loaded. Extensions are loading into the active Python interpreter and may run arbitrary code [current: none] .SH COMMANDS .IP "--help-msg=<msg-id>" @@ -225,7 +229,7 @@ Tells whether to store unknown words to indicated private dictionary in --spelli .SH FORMAT .IP "--max-line-length=<int>" -Maximum number of characters on a single line. [current: 80] +Maximum number of characters on a single line. [current: 100] .IP "--ignore-long-lines=<regexp>" Regexp for a line that is allowed to be longer than the limit. [current: ^\s*(# )?<?https?://\S+>?$] .IP "--single-line-if-stmt=<y_or_n>" |