summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: a2b178bd4b5e8427877006bbc6c875e219fb2369 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[tool:pytest]
testpaths =
    tests

[flake8]
exclude = .git,.idea,.pytest_cache,.tox,.nox,.venv,.vscode,build,cmd2.egg-info,dist,htmlcov,__pycache__,*.egg
max-line-length = 127
max-complexity = 26

[isort]
line_length=127
skip=cmd2/__init__.py
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true

[doc8]
ignore-path=docs/_build,.git,.idea,.pytest_cache,.tox,.nox,.venv,.vscode,build,cmd2,examples,tests,cmd2.egg-info,dist,htmlcov,__pycache__,*.egg,plugins
max-line-length=117
verbose=0