19 lines
342 B
INI
19 lines
342 B
INI
[flake8]
|
|
max-line-length = 88
|
|
ignore = W391, W503, F821, E203, E231
|
|
|
|
[mypy]
|
|
python_version = 3.6
|
|
ignore_missing_imports = True
|
|
warn_unused_configs = True
|
|
|
|
[isort]
|
|
multi_line_output=3
|
|
include_trailing_comma=True
|
|
force_grid_wrap=0
|
|
use_parentheses=True
|
|
line_length=88
|
|
lines_between_types=0
|
|
combine_as_imports=True
|
|
known_first_party=rainy, tests
|