You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
515 B
INI
18 lines
515 B
INI
|
3 years ago
|
[flake8]
|
||
|
|
# E501: line too long -> managed by black, allow some lines (docstring, etc.) to be longer
|
||
|
|
# W503: Line break occurred before a binary operator -> preferred way for black
|
||
|
|
# E203: Whitespace before ':' -> managed by black, allow some cases (subscripting, etc.)
|
||
|
|
ignore = E501, W503, E203
|
||
|
|
max-line-length = 110
|
||
|
|
|
||
|
|
[isort]
|
||
|
|
multi_line_output = 3
|
||
|
|
include_trailing_comma = True
|
||
|
|
force_grid_wrap = 0
|
||
|
|
use_parentheses = True
|
||
|
|
ensure_newline_before_comments = True
|
||
|
|
line_length = 110
|
||
|
|
|
||
|
|
[pytest]
|
||
|
|
norecursedirs = .venv .eggs
|