aboutsummaryrefslogtreecommitdiff
path: root/python/setup.cfg
diff options
context:
space:
mode:
authorJohn Snow <jsnow@redhat.com>2021-06-29 17:43:11 -0400
committerJohn Snow <jsnow@redhat.com>2021-06-30 21:54:04 -0400
commit82e6517d9d0a1ce9fdc09919af26775a5127a5ec (patch)
tree863d5873c093172dfbadfb7e8f1fa1547d3f9aa9 /python/setup.cfg
parent7f179082638efe920748b5243423bdcaed3d42ef (diff)
downloadqemu-82e6517d9d0a1ce9fdc09919af26775a5127a5ec.zip
qemu-82e6517d9d0a1ce9fdc09919af26775a5127a5ec.tar.gz
qemu-82e6517d9d0a1ce9fdc09919af26775a5127a5ec.tar.bz2
python: Remove global pylint suppressions
These suppressions only apply to a small handful of places. Instead of disabling them globally, disable them just in the cases where we need. The design of the machine class grew quite organically with tons of constructor and class instance variables -- there's little chance of meaningfully refactoring it in the near term, so just suppress the warnings for that class. Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Willian Rampazzo <willianr@redhat.com> Reviewed-by: Wainer dos Santos Moschetta <wainersm@redhat.com> Message-id: 20210629214323.1329806-4-jsnow@redhat.com Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'python/setup.cfg')
-rw-r--r--python/setup.cfg4
1 files changed, 1 insertions, 3 deletions
diff --git a/python/setup.cfg b/python/setup.cfg
index db1639c..524789d 100644
--- a/python/setup.cfg
+++ b/python/setup.cfg
@@ -87,9 +87,7 @@ ignore_missing_imports = True
# --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=too-many-arguments,
- too-many-instance-attributes,
- too-many-public-methods,
+disable=
[pylint.basic]
# Good variable names which should always be accepted, separated by a comma.