mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-12 15:44:17 +00:00
Add doc8 linting
This commit is contained in:
parent
5ee061b810
commit
54ad972e56
2 changed files with 12 additions and 1 deletions
|
|
@ -79,7 +79,7 @@ Note specifically these lines:
|
||||||
# snip ...
|
# snip ...
|
||||||
)
|
)
|
||||||
|
|
||||||
We tell setuptools to register our entry point "X" inside the specific
|
We tell setuptools to register our entry point "X" inside the specific
|
||||||
grouping of entry-points that flake8 should look in.
|
grouping of entry-points that flake8 should look in.
|
||||||
|
|
||||||
Flake8 presently looks at three groups:
|
Flake8 presently looks at three groups:
|
||||||
|
|
|
||||||
11
tox.ini
11
tox.ini
|
|
@ -36,6 +36,17 @@ deps =
|
||||||
commands =
|
commands =
|
||||||
pylint flake8
|
pylint flake8
|
||||||
|
|
||||||
|
[testenv:doc8]
|
||||||
|
basepython = python3
|
||||||
|
skipsdist = true
|
||||||
|
skip_install = true
|
||||||
|
use_develop = false
|
||||||
|
deps =
|
||||||
|
sphinx
|
||||||
|
doc8
|
||||||
|
commands =
|
||||||
|
doc8 docs/source/
|
||||||
|
|
||||||
[testenv:mypy]
|
[testenv:mypy]
|
||||||
basepython = python3
|
basepython = python3
|
||||||
skipsdist = true
|
skipsdist = true
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue