Files
PythonRobotics/ruff.toml
Atsushi Sakai 15a9190060 using ruff instead of flake8 (#787)
* using ruff instead of flake8

* using ruff instead of flake8

* using ruff instead of flake8
2023-01-30 21:33:49 +09:00

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"