1[flake8]
2
3max-line-length = 90
4ignore =
5  # irrelevant plugins
6  B3,
7  DW12,
8  # code is sometimes better without this
9  E129,
10  # consistency with mypy
11  W504
12exclude =
13  # tests have more relaxed formatting rules
14  # and its own specific config in .flake8-tests
15  typing_extensions/src/test_typing_extensions.py,
16