mirror of https://github.com/commaai/cereal.git
21 lines
506 B
TOML
21 lines
506 B
TOML
# https://beta.ruff.rs/docs/configuration/#using-pyprojecttoml
|
|
[tool.ruff]
|
|
select = ["E", "F", "W", "PIE", "C4", "ISC", "RUF100", "A"]
|
|
ignore = ["W292", "E741", "E402", "C408", "ISC003"]
|
|
line-length = 160
|
|
target-version="py311"
|
|
flake8-implicit-str-concat.allow-multiline=false
|
|
|
|
[mypy.tool]
|
|
# third-party packages
|
|
ignore_missing_imports=true
|
|
|
|
# helpful warnings
|
|
warn_redundant_casts=true
|
|
warn_unreachable=true
|
|
warn_unused_ignores=true
|
|
|
|
# restrict dynamic typing
|
|
warn_return_any=true
|
|
check_untyped_defs=true
|