a | b/.flake8 | ||
---|---|---|---|
1 | # This is an example .flake8 config, used when developing *Black* itself. |
||
2 | # Keep in sync with setup.cfg and pyproject.toml which is used for source packages. |
||
3 | |||
4 | [flake8] |
||
5 | ignore = W503, E203, B950, B011, B904 |
||
6 | max-line-length = 100 |
||
7 | max-complexity = 18 |
||
8 | select = B,C,E,F,W,T4,B9 |
||
9 | docstring-convention = google |