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 | c0d3f6964a537094fa2fff32f0be6e653438b09e (patch) | |
tree | dda2f107fdde10e8fbce46ec2773b0fa7a38b847 /examples | |
parent | 59bf1e35e1fa32cbcb92ad139a329e1332cefd8d (diff) | |
download | pylint-git-c0d3f6964a537094fa2fff32f0be6e653438b09e.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
--HG--
branch : docs-improvements2
Diffstat (limited to 'examples')
-rw-r--r-- | examples/pylintrc | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/examples/pylintrc b/examples/pylintrc index 69f0ee192..9c3a58996 100644 --- a/examples/pylintrc +++ b/examples/pylintrc @@ -30,6 +30,15 @@ symbols=no # Use multiple processes to speed up Pylint. jobs=1 +# Allow loading of arbitrary C extensions. Extensions are imported into the +# active Python interpreter and may run arbitrary code. +unsafe-load-any-extension=no + +# 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 +extension-pkg-whitelist= + [MESSAGES CONTROL] @@ -51,7 +60,7 @@ confidence= # --enable=similarities". If you want to run only the classes checker, but have # no Warning level messages displayed, use"--disable=all --enable=classes # --disable=W" -#disable= +disable=E1608,W1627,E1601,E1603,E1602,E1605,E1604,E1607,E1606,W1621,W1620,W1623,W1622,W1625,W1624,W1609,W1608,W1607,W1606,W1605,W1604,W1603,W1602,W1601,W1639,I0021,W1638,I0020,W1618,W1619,W1630,W1626,W1637,W1634,W1635,W1610,W1611,W1612,W1613,W1614,W1615,W1616,W1617,W1632,W1633,W0704,W1628,W1629,W1636 [REPORTS] @@ -251,7 +260,7 @@ spelling-store-unknown-words=no [FORMAT] # Maximum number of characters on a single line. -max-line-length=80 +max-line-length=100 # Regexp for a line that is allowed to be longer than the limit. ignore-long-lines=^\s*(# )?<?https?://\S+>?$ |