Quotes around version in README yaml code block are not necessary (#38)

This commit is contained in:
Felipe Moreno 2023-05-20 11:07:05 -04:00 committed by GitHub
parent 7c149cf0b9
commit 4520e4045e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,7 @@ Add this to your `.pre-commit-config.yaml`:
```yaml ```yaml
- repo: https://github.com/charliermarsh/ruff-pre-commit - repo: https://github.com/charliermarsh/ruff-pre-commit
# Ruff version. # Ruff version.
rev: "v0.0.269" rev: v0.0.269
hooks: hooks:
- id: ruff - id: ruff
``` ```
@ -22,7 +22,7 @@ Or, to enable autofix:
```yaml ```yaml
- repo: https://github.com/charliermarsh/ruff-pre-commit - repo: https://github.com/charliermarsh/ruff-pre-commit
# Ruff version. # Ruff version.
rev: "v0.0.269" rev: v0.0.269
hooks: hooks:
- id: ruff - id: ruff
args: [--fix, --exit-non-zero-on-fix] args: [--fix, --exit-non-zero-on-fix]