[flake8]
max-line-length = 88
extend-ignore = E203, W503
exclude = .git,__pycache__,build,dist,venv,.venv
per-file-ignores =
    # Ignore missing docstrings in tests
    tests/*:D100,D101,D102,D103
    # Ignore line length in specific files that will be refactored later
    chromecap/cli.py:E501
    chromecap/server/main.py:E501
 