mirror of
https://github.com/ycd/manage-fastapi.git
synced 2021-11-08 01:34:39 +03:00
22 lines
352 B
INI
22 lines
352 B
INI
[isort]
|
|
profile = black
|
|
known_first_party = manage_fastapi
|
|
skip = */templates/*
|
|
|
|
[flake8]
|
|
max-complexity = 7
|
|
statistics = True
|
|
max-line-length = 88
|
|
ignore = W503,E203
|
|
per-file-ignores =
|
|
__init__.py: F401
|
|
|
|
[mypy]
|
|
plugins = pydantic.mypy
|
|
ignore_missing_imports = True
|
|
follow_imports = skip
|
|
strict_optional = True
|
|
|
|
[coverage:run]
|
|
omit = */templates/*
|