diff --git a/.flake8 b/.flake8 index 469560a4..9e42db7a 100644 --- a/.flake8 +++ b/.flake8 @@ -1,7 +1,10 @@ # Unfortunately, flake8 does not support pyproject.toml configuration. # https://github.com/PyCQA/flake8/issues/234 +# +# Disabling the following noise: +# E501: line too long, managed better by Bugbear's B950 [flake8] -ignore = +ignore = E501 per-file-ignores = max-line-length = 120 show-source = true diff --git a/pyproject.toml b/pyproject.toml index 996a4181..fc685806 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -167,6 +167,7 @@ ignore_missing_imports = true fail-under = 10.0 disable = [ "fixme", + "line-too-long", # Replaced by Flake8 Bugbear B950 check. "too-few-public-methods", "too-many-ancestors", "too-many-arguments",