mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-14 01:28:23 -05:00
* using ruff instead of flake8 * using ruff instead of flake8 * using ruff instead of flake8
18 lines
274 B
TOML
18 lines
274 B
TOML
line-length = 88
|
|
|
|
select = ["F", "E", "W", "UP"]
|
|
ignore = ["E501", "E741"]
|
|
exclude = [
|
|
]
|
|
|
|
# Assume Python 3.11
|
|
target-version = "py311"
|
|
|
|
[per-file-ignores]
|
|
|
|
[mccabe]
|
|
# Unlike Flake8, default to a complexity level of 10.
|
|
max-complexity = 10
|
|
|
|
[pydocstyle]
|
|
convention = "numpy" |