blob: 48a491cd5fa990b8f63d0d50fada8963cdd13a01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
[tox]
envlist = lint
isolated_build = true
[testenv:lint]
skip_install = true
commands =
flake8 .
codespell
deps =
flake8
codespell
[pycodestyle]
ignore = E226,E302,E71
|