/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
pyproject.toml
26 строк
540 B
Ville Skyttä
chore(ruff): enable isort, apply autofixes
04 апр 2024, 00:00
04 апр 2024, 00:00
29cb240
Код
Авторство
О чём код?
[tool.ruff] line-length = 79 target-version = "py37" lint.select = ["E", "F", "B", "I"] lint.ignore = [ # https://docs.astral.sh/ruff/formatter/#conflicting-lint-rules # (keep order of ignores here same as ^there for maintainability) "W191", "E111", "E114", "E117", "D206", "D300", "Q000", "Q001", "Q002", "Q003", "COM812", "COM819", "ISC001", "ISC002", "E501", ] lint.isort.known-first-party = ["conftest"] lint.isort.known-third-party = ["pexpect", "pytest"] fix = true