pre-commit: Bump version, add doc8
Change-Id: I2319edaf17589e22567c352d3d79cb925febbd8d Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
This commit is contained in:
parent
aeb1f4c19f
commit
0e2010d930
@ -1,15 +1,6 @@
|
|||||||
# We from the Oslo project decided to pin repos based on the
|
|
||||||
# commit hash instead of the version tag to prevend arbitrary
|
|
||||||
# code from running in developer's machines. To update to a
|
|
||||||
# newer version, run `pre-commit autoupdate` and then replace
|
|
||||||
# the newer versions with their commit hash.
|
|
||||||
|
|
||||||
default_language_version:
|
|
||||||
python: python3
|
|
||||||
|
|
||||||
repos:
|
repos:
|
||||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
rev: 9136088a246768144165fcc3ecc3d31bb686920a # v3.3.0
|
rev: v4.5.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: trailing-whitespace
|
- id: trailing-whitespace
|
||||||
# Replaces or checks mixed line ending
|
# Replaces or checks mixed line ending
|
||||||
@ -27,13 +18,13 @@ repos:
|
|||||||
- id: debug-statements
|
- id: debug-statements
|
||||||
- id: check-yaml
|
- id: check-yaml
|
||||||
files: .*\.(yaml|yml)$
|
files: .*\.(yaml|yml)$
|
||||||
- repo: local
|
- repo: https://opendev.org/openstack/hacking
|
||||||
|
rev: 6.1.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: flake8
|
- id: hacking
|
||||||
name: flake8
|
additional_dependencies: []
|
||||||
additional_dependencies:
|
|
||||||
- hacking>=6.1.0,<6.2.0
|
|
||||||
language: python
|
|
||||||
entry: flake8
|
|
||||||
files: '^.*\.py$'
|
|
||||||
exclude: '^(doc|releasenotes|tools)/.*$'
|
exclude: '^(doc|releasenotes|tools)/.*$'
|
||||||
|
- repo: https://github.com/PyCQA/doc8
|
||||||
|
rev: v1.1.1
|
||||||
|
hooks:
|
||||||
|
- id: doc8
|
||||||
|
8
tox.ini
8
tox.ini
@ -64,12 +64,10 @@ deps = -r{toxinidir}/doc/requirements.txt
|
|||||||
commands = sphinx-build -W -b html doc/source doc/build/html
|
commands = sphinx-build -W -b html doc/source doc/build/html
|
||||||
|
|
||||||
[testenv:pep8]
|
[testenv:pep8]
|
||||||
deps = hacking>=4.0.0,<4.1.0
|
deps =
|
||||||
doc8
|
pre-commit
|
||||||
pre-commit>=2.6.0
|
|
||||||
commands =
|
commands =
|
||||||
pre-commit run -a
|
pre-commit run --all-files --show-diff-on-failure
|
||||||
doc8 doc/source
|
|
||||||
|
|
||||||
[flake8]
|
[flake8]
|
||||||
exclude=.venv,.git,.tox,dist,*egg,*.egg-info,build,examples,doc
|
exclude=.venv,.git,.tox,dist,*egg,*.egg-info,build,examples,doc
|
||||||
|
Loading…
Reference in New Issue
Block a user