/
githubmirror
/
Open-Assistant
Обзор
Документация
Войти
/
githubmirror
/
Open-Assistant
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
pyproject.toml
40 строк
785 B
Andreas Köpf
ci: switch flake8 by ruff (#3323)
08 июн 2023, 18:44
Не верифицирован
08 июн 2023, 18:44
a226633
Код
Авторство
О чём код?
[tool.isort] profile = "black" filter_files = true multi_line_output = 3 include_trailing_comma = true force_grid_wrap = 0 use_parentheses = true ensure_newline_before_comments = true line_length = 120 [tool.black] line-length = 120 target-version = ['py310'] [tool.ruff] line-length = 120 select = [ "E", "W", # see: https://pypi.org/project/pycodestyle "F", # see: https://pypi.org/project/pyflakes ] ignore = [ "E501", "E731", "E741", # Ambiguous variable name: ... "E999", # SyntaxError: invalid syntax. Got unexpected token Newline ] exclude = [ ".eggs", ".git", ".ruff_cache", "__pypackages__", "_build", "build", "dist", "docs" ] ignore-init-module-imports = true [tool.ruff.mccabe] max-complexity = 10