Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Add the following to your `.pre-commit-config.yaml` file to block commits with m

```yaml
- repo: https://github.com/stefmolin/docstringify
rev: 1.1.0
rev: 1.1.1
hooks:
- id: docstringify
```
Expand All @@ -67,7 +67,7 @@ By default, all docstrings are required. If you want to be more lenient, you can

```yaml
- repo: https://github.com/stefmolin/docstringify
rev: 1.1.0
rev: 1.1.1
hooks:
- id: docstringify
args: [--threshold=0.75]
Expand All @@ -77,7 +77,7 @@ If you would like to see suggested docstring templates (inferred from type annot

```yaml
- repo: https://github.com/stefmolin/docstringify
rev: 1.1.0
rev: 1.1.1
hooks:
- id: docstringify
args: [--suggest-changes=numpydoc]
Expand All @@ -87,7 +87,7 @@ Use `--make-changes` to create a copy of each file with docstring templates. Her

```yaml
- repo: https://github.com/stefmolin/docstringify
rev: 1.1.0
rev: 1.1.1
hooks:
- id: docstringify
args: [--make-changes=google]
Expand All @@ -97,7 +97,7 @@ If you want the changes to be made in place, change `--make-changes` to `--make-

```yaml
- repo: https://github.com/stefmolin/docstringify
rev: 1.1.0
rev: 1.1.1
hooks:
- id: docstringify
args: [--make-changes-inplace=numpydoc]
Expand Down
Loading