Skip to content

Commit 82890d3

Browse files
authored
Add docformatter. (#7)
1 parent 7cafe49 commit 82890d3

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

.pre-commit-config.yaml

+6-1
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,14 @@ repos:
4040
- id: reorder-python-imports
4141
args: [--py37-plus, --add-import, 'from __future__ import annotations']
4242
- repo: https://github.com/psf/black
43-
rev: 22.1.0
43+
rev: 22.6.0
4444
hooks:
4545
- id: black
46+
- repo: https://github.com/myint/docformatter
47+
rev: v1.3.1
48+
hooks:
49+
- id: docformatter
50+
args: [--in-place, --wrap-summaries, "88", --wrap-descriptions, "88", --blank]
4651
- repo: https://github.com/asottile/blacken-docs
4752
rev: v1.12.1
4853
hooks:

tox.ini

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,13 @@ conda_channels =
1515
conda_deps =
1616
# pytest
1717
pytest
18-
pytest-cookies
1918
pytest-cov
2019
pytest-xdist
2120

2221
# Package dependencies
2322
cookiecutter
23+
deps =
24+
git+https://github.com/andriihomiak/pytest-cookies.git@fix/quotes_in_user_config
2425

2526
commands =
2627
pytest {posargs}

{{cookiecutter.package_name}}/.pre-commit-config.yaml

+6-1
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,14 @@ repos:
4242
hooks:
4343
- id: setup-cfg-fmt
4444
- repo: https://github.com/psf/black
45-
rev: 22.1.0
45+
rev: 22.6.0
4646
hooks:
4747
- id: black
48+
- repo: https://github.com/myint/docformatter
49+
rev: v1.3.1
50+
hooks:
51+
- id: docformatter
52+
args: [--in-place, --wrap-summaries, "88", --wrap-descriptions, "88", --blank]
4853
- repo: https://github.com/asottile/blacken-docs
4954
rev: v1.12.1
5055
hooks:

0 commit comments

Comments
 (0)