diff options
author | Scott Moser <smoser@brickies.net> | 2017-04-27 12:50:12 -0400 |
---|---|---|
committer | Scott Moser <smoser@brickies.net> | 2017-04-27 12:50:12 -0400 |
commit | 8310484a880690529a4936615df596d467e51708 (patch) | |
tree | 886aeb1a6e3ca809e466ddbcacbe9741b56dafa0 /.pylintrc | |
parent | af63cf763946bca6163dc797195a3aeae975f8da (diff) | |
parent | 513e99e049eab4acea14e187f59d760adc755b40 (diff) | |
download | vyos-cloud-init-8310484a880690529a4936615df596d467e51708.tar.gz vyos-cloud-init-8310484a880690529a4936615df596d467e51708.zip |
merge from 513e99e049ea at 0.7.9-113-g513e99e0
Diffstat (limited to '.pylintrc')
-rw-r--r-- | .pylintrc | 29 |
1 files changed, 25 insertions, 4 deletions
@@ -6,14 +6,35 @@ jobs=4 [MESSAGES CONTROL] -# Errors only -disable=C, F, I, R, W +# Errors and warings with some filtered: +# W0105(pointless-string-statement) +# W0107(unnecessary-pass) +# W0201(attribute-defined-outside-init) +# W0212(protected-access) +# W0221(arguments-differ) +# W0222(signature-differs) +# W0223(abstract-method) +# W0231(super-init-not-called) +# W0311(bad-indentation) +# W0511(fixme) +# W0602(global-variable-not-assigned) +# W0603(global-statement) +# W0611(unused-import) +# W0612(unused-variable) +# W0613(unused-argument) +# W0621(redefined-outer-name) +# W0622(redefined-builtin) +# W0631(undefined-loop-variable) +# W0703(broad-except) +# W1401(anomalous-backslash-in-string) + +disable=C, F, I, R, W0105, W0107, W0201, W0212, W0221, W0222, W0223, W0231, W0311, W0511, W0602, W0603, W0611, W0612, W0613, W0621, W0622, W0631, W0703, W1401 [REPORTS] # Set the output format. Available formats are text, parseable, colorized, msvs -output-format=colorized +output-format=parseable # Just the errors please, no full report reports=no @@ -25,7 +46,7 @@ reports=no # (useful for modules/projects where namespaces are manipulated during runtime # and thus existing member attributes cannot be deduced by static analysis. It # supports qualified module names, as well as Unix pattern matching. -ignored-modules=six.moves,pkg_resources +ignored-modules=six.moves,pkg_resources,httplib,http.client # List of class names for which member attributes should not be checked (useful # for classes with dynamically set attributes). This supports the use of |