From e9573bbd7521345d36056f1e1e17cd461e98950c Mon Sep 17 00:00:00 2001 From: Valentin Kiselev Date: Thu, 14 Mar 2024 10:36:11 +0300 Subject: [PATCH] docs: allow only comma divided tags (#675) --- docs/configuration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/configuration.md b/docs/configuration.md index 4e9f2f02..6c1430b7 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -1004,7 +1004,7 @@ pre-commit: ### `tags` -You can specify tags for commands and scripts. This is useful for [excluding](#exclude_tags). You can specify more than one tag using comma or space. +You can specify tags for commands and scripts. This is useful for [excluding](#exclude_tags). You can specify more than one tag using comma. **Example** @@ -1017,7 +1017,7 @@ pre-commit: tags: frontend,js run: yarn lint test: - tags: backend ruby + tags: backend,ruby run: bundle exec rspec ```