summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorMichal Nowikowski <godfryd@gmail.com>2015-02-28 06:17:17 +0100
committerMichal Nowikowski <godfryd@gmail.com>2015-02-28 06:17:17 +0100
commite7d80a03bffcc0dfad7887c2bf67f64558c8b185 (patch)
treea5091646dd04ea0acd42b794d2077a2d835f306d /man
parentd455ee37b2311735548d05c9fa9acf07cb2920a0 (diff)
downloadpylint-e7d80a03bffcc0dfad7887c2bf67f64558c8b185.tar.gz
Backed out changeset 406c23c24795
Diffstat (limited to 'man')
-rw-r--r--man/pylint.18
1 files changed, 2 insertions, 6 deletions
diff --git a/man/pylint.1 b/man/pylint.1
index fd12abb..3a5c3e9 100644
--- a/man/pylint.1
+++ b/man/pylint.1
@@ -1,4 +1,4 @@
-.TH pylint 1 "2015-2-27" pylint
+.TH pylint 1 "2014-11-4" pylint
.SH NAME
.B pylint
\- python code static checker
@@ -44,8 +44,6 @@ 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>"
@@ -54,8 +52,6 @@ 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>"
@@ -229,7 +225,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: 100]
+Maximum number of characters on a single line. [current: 80]
.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>"