summaryrefslogtreecommitdiff
path: root/examples
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 /examples
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 'examples')
-rw-r--r--examples/pylintrc13
1 files changed, 11 insertions, 2 deletions
diff --git a/examples/pylintrc b/examples/pylintrc
index 69f0ee1..9c3a589 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+>?$