summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorMichal Nowikowski <godfryd@gmail.com>2015-02-27 06:48:24 +0100
committerMichal Nowikowski <godfryd@gmail.com>2015-02-27 06:48:24 +0100
commitd455ee37b2311735548d05c9fa9acf07cb2920a0 (patch)
tree391d5b70c0512aa2ee9a9174814921731cd2fdea /man
parentc08284e7509f314244d26607d77e0508915ab5b4 (diff)
downloadpylint-d455ee37b2311735548d05c9fa9acf07cb2920a0.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.18
1 files changed, 6 insertions, 2 deletions
diff --git a/man/pylint.1 b/man/pylint.1
index 3a5c3e9..fd12abb 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>"