mirror of
https://gitlab.crans.org/nounous/ghostream.git
synced 2024-12-22 22:02:19 +00:00
27 lines
489 B
INI
27 lines
489 B
INI
[tox]
|
|
envlist =
|
|
linters
|
|
skipsdist = True
|
|
|
|
[testenv:linters]
|
|
deps =
|
|
flake8
|
|
flake8-colors
|
|
flake8-import-order
|
|
flake8-typing-imports
|
|
pep8-naming
|
|
pyflakes
|
|
commands =
|
|
flake8 ghostream
|
|
|
|
[flake8]
|
|
exclude =
|
|
__pycache__,
|
|
*.pyc,
|
|
*.egg-info,
|
|
.cache,
|
|
.eggs
|
|
import-order-style = google
|
|
application-import-names = flake8
|
|
format = ${cyan}%(path)s${reset}:${yellow_bold}%(row)d${reset}:${green_bold}%(col)d${reset}: ${red_bold}%(code)s${reset} %(text)s
|