summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: f3badbe249c359749baf2855a2a4999a30d9eae9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[mypy]
python_version = 3.6
follow_imports = silent
disallow_any_generics = True
strict_optional = True
check_untyped_defs = True
allow_redefinition = True

[mypy-test_isort]
strict_optional = False

[mypy-isort.isort]
strict_optional = False

[tool:pytest]
testpaths = tests

[flake8]
max-line-length = 100
ignore = F403,F401,W503,E203