Skip to content

Commit

Permalink
Documenting tool integration (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesbraza committed Jan 29, 2024
1 parent 75e485b commit 676847e
Show file tree
Hide file tree
Showing 2 changed files with 93 additions and 3 deletions.
72 changes: 70 additions & 2 deletions docs/how_to_config.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,23 +56,91 @@ bit more "Pythonic" and easier to read.)

This is a template for `.pre-commit-config.yaml`:

<table>
<tr><th>As a native tool</th><th>As a flake8 plugin</th></tr>
<tr><td>

```yaml
- repo: https://github.com/jsh9/pydoclint
rev: <latest_tag>
hooks:
- id: pydoclint
args:
- [--style=google, --check-return-types=False]
- --style=google
- --check-return-types=False
```

</td><td>

```yaml
- repo: https://github.com/pycqa/flake8
rev: <latest_tag>
hooks:
- id: flake8
additional_dependencies:
- pydoclint==<latest_tag>
args:
- --style=google
- --check-return-types=False
```

</td></tr>
</table>

If you've already specified all the configuration options in a config file,
here is how to cite them in `.pre-commit-config.yaml`:
<table>
<tr><th>As a native tool</th><th>As a flake8 plugin</th></tr>
<tr><td>
```yaml
- repo: https://github.com/jsh9/pydoclint
rev: <latest_tag>
hooks:
- id: pydoclint
args:
- "--config=pyproject.toml"
- --config=pyproject.toml
```
</td><td>
```yaml
- repo: https://github.com/pycqa/flake8
rev: <latest_tag>
hooks:
- id: flake8
additional_dependencies:
- Flake8-pyproject>=1.2.0
- pydoclint==<latest_tag>
args:
- --toml-config=pyproject.toml
- --style=google
- --check-return-types=False
```
</td></tr>
</table>
Here is an example accompanying `pyproject.toml` config file:
<table>
<tr><th>As a native tool</th><th>As a flake8 plugin</th></tr>
<tr><td>
```toml
[tool.pydoclint]
check-return-types = false
style = "google"
```
</td><td>
```toml
[tool.flake8]
check-return-types = false
style = "google"
```
</td></tr>
</table>
24 changes: 23 additions & 1 deletion docs/how_to_ignore.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# How to ignore certain violations in _flake8_ mode
# How to ignore certain violations

## As a native tool

Currently, pydoclint does not support ignoring certain violations as a native
tool. Please use it as a _flake8_ plugin to achieve that, or feel free to
contribute this feature.

## As a _flake8_ plugin

In _flake8_ mode (meaning that you use _pydoclint_ as a flake8 plugin), if
you'd like to ignore a specific violation code (such as `DOC201` and `DOC301`)
Expand Down Expand Up @@ -26,3 +34,17 @@ def my_function( # noqa: DOC2
All the usage is consistent with how you would use _flake8_. Please read the
official _flake8_ documentation for full details:
https://flake8.pycqa.org/en/latest/user/violations.html.

### Usage with [Ruff](https://github.com/astral-sh/ruff)

With `ruff>=0.1.3`, allowlist `DOC` codes using the
[`external` setting](https://docs.astral.sh/ruff/settings/#external):

Put the following in your `pyproject.toml` file:

```toml
[tool.ruff]
external = [
"DOC", # pydoclint
]
```

0 comments on commit 676847e

Please sign in to comment.