mirror of
https://github.com/waydroid/waydroid.git
synced 2026-04-18 14:07:26 -04:00
24 lines
425 B
TOML
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.
|
|
]
|