pylintrc: Ignore duplicate-code warnings

- We get a lot of them in test/format/. They were not being reported before because pylint was getting only one file at a time.
This commit is contained in:
Kamil Śliwak 2021-08-23 19:58:39 +02:00
parent fa2b9dd1e1
commit 7ad45a2772

View File

@ -21,6 +21,7 @@ disable=
bad-indentation, bad-indentation,
bad-whitespace, bad-whitespace,
consider-using-sys-exit, consider-using-sys-exit,
duplicate-code,
invalid-name, invalid-name,
missing-docstring, missing-docstring,
mixed-indentation, mixed-indentation,