Files
waydroid/pyproject.toml
2026-03-29 16:52:15 +02:00

24 lines
425 B
TOML

# SPDX-License-Identifier: GPL-3.0-or-later
[tool.autopep8]
max-line-length = 131
[tool.isort]
line_length = 131
[tool.ruff]
line-length = 131
[tool.ruff.lint]
select = [
# Standard errors and warnings
"E",
"W",
"F",
]
ignore = [
"E501", # Do not enforce line length limit for now.
"F401", # TODO: Remove this once unused imports are removed.
"F811", # TODO: Remove this once redefined variables are refactored.
]