Files
PythonRobotics/ruff.toml
Atsushi Sakai 1656cab0d2 Support python 3.12 (#954)
* Update Linux_CI.yml

* Update MacOS_CI.yml

* Update Windows_CI.yml

* Delete .lgtm.yml

* Update lqr_planner.py

* Update lqr_planner.py

* Update config.yml

* Update environment.yml

* Update ruff.toml

* Update README.md

* Update getting_started_main.rst

* Update doc_requirements.txt
2024-03-14 22:01:51 +09:00

19 lines
283 B
TOML

line-length = 88
select = ["F", "E", "W", "UP"]
ignore = ["E501", "E741", "E402"]
exclude = [
]
# Assume Python 3.11
target-version = "py312"
[per-file-ignores]
[mccabe]
# Unlike Flake8, default to a complexity level of 10.
max-complexity = 10
[pydocstyle]
convention = "numpy"