mirror of
https://github.com/james-m-jordan/morphik-core.git
synced 2025-05-09 19:32:38 +00:00
19 lines
322 B
TOML
19 lines
322 B
TOML
![]() |
[tool.isort]
|
||
|
profile = "black"
|
||
|
line_length = 120
|
||
|
|
||
|
[tool.black]
|
||
|
line-length = 120
|
||
|
target-version = ['py310']
|
||
|
|
||
|
[tool.ruff]
|
||
|
line-length = 120
|
||
|
|
||
|
[tool.ruff.lint]
|
||
|
select = ["E", "F", "W", "I"]
|
||
|
fixable = ["ALL"]
|
||
|
ignore = []
|
||
|
|
||
|
[tool.ruff.lint.per-file-ignores]
|
||
|
"__init__.py" = ["F401"] # Ignore unused imports in __init__.py files
|