File size: 1,002 Bytes
cb9e677 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
[tool.black]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
line-length = 88
[tool.isort]
known_third_party = []
line_length = 88
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true
follow_imports = "normal"
[tool.ruff]
lint.select = ["E", "F", "W", "C90", "I", "C4", "PT", "RSE", "TID", "TCH", "FLY", "NPY", "RUF", "T10"]
line-length = 88
lint.ignore = ["E501"]
target-version = "py38"
exclude = [".git","__pycache__",".vscode",".mypy_cache"]
[tool.ruff.lint.mccabe]
max-complexity = 20
[tool.pytest.ini_options]
python_classes = [
"!TestConfig",
]
filterwarnings = [
"error",
"ignore::DeprecationWarning",
"ignore::ImportWarning",
"ignore::DeprecationWarning:pkg_resources",
"ignore::DeprecationWarning:wandb",
"ignore::DeprecationWarning:torch.utils.tensorboard",
"ignore::UserWarning",
]
testpaths = []
addopts = "--ignore=third_party --ignore=tokens"
|