summaryrefslogtreecommitdiff
path: root/.flake8
blob: 60991418bd19684c9753205fa26db84c95a861be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[flake8]
max-line-length = 120
exclude = .git,
    __pycache__,
    old,
    build,
    dist,
    .venv,
    .vscode,
    .pytest_cache,
    __init__.py,
    .mypy_cache,
    src/robusta/integrations/kubernetes/autogenerated,
    src/robusta/integrations/kubernetes/custom_models.py
ignore = E501, W503, E203