aboutsummaryrefslogtreecommitdiff
path: root/setup.cfg
blob: 1c6cfb7670711bfd6ba9150bc45348d9c2daf1b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[flake8]
max-line-length = 88
ignore =
    E203 W503
per-file-ignores =
    *__init__.py:F401
    tests/*:D,FS003
exclude =.svn,CVS,.bzr,.hg,.git,__pycache__,.tox,.eggs,*.egg,*.cache,*.local
multi_line_output = 3

[pydocstyle]
ignore=D100,D104,D107,D203,D213,D406,D407,D413

[mypy]
pretty = True
strict = True
show_error_codes = True
warn_unreachable = True

[tool:pytest]
addopts = --verbose
testpaths = tests

[isort]
profile = black
multi_line_output = 3
skip_glob =*/.cache/*,*/.local/*