Files
BrowserOS/pyproject.toml
2025-09-18 11:02:08 -07:00

28 lines
422 B
TOML

[tool.black]
line-length = 88
target-version = ['py312']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| env
| _build
| buck-out
| build
| dist
| chromium_src
| chromium_src_bak
| third_party
)/
'''
[tool.isort]
profile = "black"
line_length = 88
skip_glob = ["env/*", "chromium_src/*", "chromium_src_bak/*", "third_party/*"]