1
1
mirror of https://github.com/yandex/pgmigrate.git synced 2024-09-19 08:07:22 +03:00

Disable consider-using-f-string in pylint

This commit is contained in:
secwall 2021-09-17 12:02:47 +03:00
parent a7277f18a1
commit b8fda18af9

View File

@ -65,7 +65,7 @@ confidence=
# --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=ungrouped-imports,too-many-arguments,raise-missing-from,consider-using-dict-items,redundant-u-string-prefix
disable=ungrouped-imports,too-many-arguments,raise-missing-from,consider-using-dict-items,redundant-u-string-prefix,consider-using-f-string
[REPORTS]