~mvo/ubuntu-sso-client/strawman-lp711413

« back to all changes in this revision

Viewing changes to pylintrc

Fix pylint warnings

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
# Add <file or directory> to the black list. It should be a base name, not a
22
22
# path. You may set this option multiple times.
23
 
#ignore=<somedir>
 
23
#ignore=qt
24
24
 
25
25
# Pickle collected data for later comparisons.
26
26
persistent=no
50
50
# W0142: Used * or ** magic
51
51
# W0613: Unused argument 'yyy'
52
52
# C0302: Too many lines in module
53
 
disable=R,I,W0142,W0613,C0302
 
53
# W0404: Reimport of module
 
54
disable=R,I,W0142,W0613,C0302,W0404
54
55
 
55
56
 
56
57
[REPORTS]