mirror of
https://github.com/kernc/backtesting.py.git
synced 2024-01-28 15:29:30 +03:00
38 lines
412 B
TOML
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',
|
|
] |