mirror of https://github.com/ansible/ansible.git
Initial pylint support for ansible-test sanity.
parent
572e9a8959
commit
1daa69d685
@ -1,2 +1,3 @@
|
|||||||
coverage >= 4.2, != 4.3.2 # features in 4.2+ required, avoid known bug in 4.3.2 on python 2.6
|
coverage >= 4.2, != 4.3.2 # features in 4.2+ required, avoid known bug in 4.3.2 on python 2.6
|
||||||
pywinrm >= 0.2.1 # 0.1.1 required, but 0.2.1 provides better performance
|
pywinrm >= 0.2.1 # 0.1.1 required, but 0.2.1 provides better performance
|
||||||
|
pylint >= 1.5.3 # 1.4.1 adds JSON output, but 1.5.3 fixes bugs related to JSON output
|
||||||
|
@ -0,0 +1,30 @@
|
|||||||
|
access-member-before-definition
|
||||||
|
assignment-from-no-return
|
||||||
|
bad-format-character
|
||||||
|
C
|
||||||
|
function-redefined
|
||||||
|
import-error
|
||||||
|
locally-disabled
|
||||||
|
locally-enabled
|
||||||
|
method-hidden
|
||||||
|
misplaced-bare-raise
|
||||||
|
no-member
|
||||||
|
no-name-in-module
|
||||||
|
no-value-for-parameter
|
||||||
|
not-a-mapping
|
||||||
|
not-an-iterable
|
||||||
|
not-callable
|
||||||
|
R
|
||||||
|
raising-bad-type
|
||||||
|
raising-non-exception
|
||||||
|
return-in-init
|
||||||
|
too-few-format-args
|
||||||
|
too-many-format-args
|
||||||
|
too-many-function-args
|
||||||
|
truncated-format-string
|
||||||
|
undefined-variable
|
||||||
|
unexpected-keyword-arg
|
||||||
|
unsubscriptable-object
|
||||||
|
unsupported-membership-test
|
||||||
|
used-before-assignment
|
||||||
|
W
|
Loading…
Reference in New Issue