diff options
author | Alejandro Colomar <alx@kernel.org> | 2024-11-03 14:20:21 +0100 |
---|---|---|
committer | Alejandro Colomar <alx@kernel.org> | 2024-11-03 14:31:37 +0100 |
commit | e02ff9efc7e36e74e9bd7b6739ec3ecebd97ecab (patch) | |
tree | 3337eb762f5949058880eeb73da885a178644b56 /etc | |
parent | a6ad241505fd6c9852203a476f7cde39463e0a54 (diff) | |
download | man-pages-e02ff9efc7e36e74e9bd7b6739ec3ecebd97ecab.tar.gz |
etc/shellcheck/shellcheckrc: disable=SC2250
Adding braces unnecessarily adds noise and thus hurts readability.
Ignore advice.
===
In src/bin/mansect line 23:
-e '(?s)^\.SH ('"$s"')$(?:(?!^\.(lf 1|TH|SH) ).)*';
^-- SC2250 (style): Prefer putting braces around variable references even when not strictly required.
===
Signed-off-by: Alejandro Colomar <alx@kernel.org>
Diffstat (limited to 'etc')
-rw-r--r-- | etc/shellcheck/shellcheckrc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/etc/shellcheck/shellcheckrc b/etc/shellcheck/shellcheckrc index f8a572fc38..6c0529e048 100644 --- a/etc/shellcheck/shellcheckrc +++ b/etc/shellcheck/shellcheckrc @@ -1,2 +1,3 @@ disable=SC2016 disable=SC2038 +disable=SC2250 |