From 4520e4045ee3ab9989684e70a76e48264b0d9e93 Mon Sep 17 00:00:00 2001 From: Felipe Moreno Date: Sat, 20 May 2023 11:07:05 -0400 Subject: [PATCH] Quotes around version in README yaml code block are not necessary (#38) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 570e96a..d9cd170 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Add this to your `.pre-commit-config.yaml`: ```yaml - repo: https://github.com/charliermarsh/ruff-pre-commit # Ruff version. - rev: "v0.0.269" + rev: v0.0.269 hooks: - id: ruff ``` @@ -22,7 +22,7 @@ Or, to enable autofix: ```yaml - repo: https://github.com/charliermarsh/ruff-pre-commit # Ruff version. - rev: "v0.0.269" + rev: v0.0.269 hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix]