/
githubmirror
/
adcli
Обзор
Документация
Войти
/
githubmirror
/
adcli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/pyproject.toml
46 строк
918 B
shridhargadekar
adcli CI configuration
05 май 2026, 22:55
05 май 2026, 22:55
e69f726
Код
Авторство
О чём код?
[tool.mypy] exclude = "docs" [[tool.mypy.overrides]] module = "jc.*" ignore_missing_imports = true [[tool.mypy.overrides]] module = "ldap.*" ignore_missing_imports = true [[tool.mypy.overrides]] module = "pytest_mh.*" ignore_missing_imports = true [[tool.mypy.overrides]] module = "sssd_test_framework.*" ignore_missing_imports = true [[tool.mypy.overrides]] module = "pytest.*" ignore_missing_imports = true # Ruff configuration - replaces black, isort, flake8, pycodestyle [tool.ruff] line-length = 119 target-version = "py311" # Linting rules [tool.ruff.lint] select = [ "E", # pycodestyle errors "W", # pycodestyle warnings "F", # pyflakes "I", # isort ] ignore = [] # Formatting (black-compatible) [tool.ruff.format] quote-style = "double" indent-style = "space" # Import sorting (isort-compatible) [tool.ruff.lint.isort] required-imports = ["from __future__ import annotations"]