mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
pylint: disable new checks
pylint 3.0 introduces new checks that raise too many errors: use-implicit-booleaness-not-comparison-to-string, use-implicit-booleaness-not-comparison-to-zero, broad-exception-raised, Disable the new checks in pylintrc Signed-off-by: Florence Blanc-Renaud <flo@redhat.com> Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com> Reviewed-By: Rob Crittenden <rcritten@redhat.com>
This commit is contained in:
parent
020af153db
commit
7f485ba7dc
3
pylintrc
3
pylintrc
@ -121,6 +121,9 @@ disable=
|
||||
use-list-literal, # pylint 2.10.0 list() vs []
|
||||
unspecified-encoding, # pylint 2.10.0, ASCII or UTF8 and platform-specific
|
||||
use-implicit-booleaness-not-comparison, # pylint 2.12.2, weak comparison
|
||||
use-implicit-booleaness-not-comparison-to-string,
|
||||
use-implicit-booleaness-not-comparison-to-zero,
|
||||
broad-exception-raised,
|
||||
|
||||
[REPORTS]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user