Files
backtesting.py/pyproject.toml
2022-12-05 19:27:07 +01:00

38 lines
412 B
TOML

[tool.ruff]
exclude = [
'.git',
'.eggs',
'__pycache__',
'doc/examples',
]
ignore = [
'UP006',
'UP007',
'UP009',
'N802',
'N806',
'C901',
'B008',
'B011',
'RUF002',
]
line-length = 100
select = [
'I',
'E',
'F',
'W',
'UP',
'N',
'C',
'B',
'T',
'RUF',
'YTT',
]
[tool.ruff.pep8-naming]
ignore-names = [
'l',
'h',
]