[clang-tools-extra] [clang-tidy] align all help message in run-clang-tidy (PR #96199)
Congcong Cai via cfe-commits
cfe-commits at lists.llvm.org
Thu Jun 20 07:37:14 PDT 2024
https://github.com/HerrCai0907 created https://github.com/llvm/llvm-project/pull/96199
None
>From 36194358315d1614cb6d802d30ffc7c651c9ff44 Mon Sep 17 00:00:00 2001
From: Congcong Cai <congcongcai0907 at 163.com>
Date: Thu, 20 Jun 2024 14:36:51 +0000
Subject: [PATCH] [clang-tidy] align all help message in run-clang-tidy
---
.../clang-tidy/tool/run-clang-tidy.py | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/clang-tools-extra/clang-tidy/tool/run-clang-tidy.py b/clang-tools-extra/clang-tidy/tool/run-clang-tidy.py
index 4dd20bec81d3b..76374933bfd15 100755
--- a/clang-tools-extra/clang-tidy/tool/run-clang-tidy.py
+++ b/clang-tools-extra/clang-tidy/tool/run-clang-tidy.py
@@ -264,17 +264,17 @@ def main():
help="allow alpha checkers from clang-analyzer.",
)
parser.add_argument(
- "-clang-tidy-binary", metavar="PATH", help="path to clang-tidy binary"
+ "-clang-tidy-binary", metavar="PATH", help="path to clang-tidy binary."
)
parser.add_argument(
"-clang-apply-replacements-binary",
metavar="PATH",
- help="path to clang-apply-replacements binary",
+ help="path to clang-apply-replacements binary.",
)
parser.add_argument(
"-checks",
default=None,
- help="checks filter, when not specified, use clang-tidy default",
+ help="checks filter, when not specified, use clang-tidy default.",
)
config_group = parser.add_mutually_exclusive_group()
config_group.add_argument(
@@ -350,16 +350,16 @@ def main():
help="number of tidy instances to be run in parallel.",
)
parser.add_argument(
- "files", nargs="*", default=[".*"], help="files to be processed (regex on path)"
+ "files", nargs="*", default=[".*"], help="files to be processed (regex on path)."
)
- parser.add_argument("-fix", action="store_true", help="apply fix-its")
+ parser.add_argument("-fix", action="store_true", help="apply fix-its.")
parser.add_argument(
- "-format", action="store_true", help="Reformat code after applying fixes"
+ "-format", action="store_true", help="Reformat code after applying fixes."
)
parser.add_argument(
"-style",
default="file",
- help="The style of reformat code after applying fixes",
+ help="The style of reformat code after applying fixes.",
)
parser.add_argument(
"-use-color",
@@ -388,7 +388,7 @@ def main():
help="Additional argument to prepend to the compiler command line.",
)
parser.add_argument(
- "-quiet", action="store_true", help="Run clang-tidy in quiet mode"
+ "-quiet", action="store_true", help="Run clang-tidy in quiet mode."
)
parser.add_argument(
"-load",
@@ -400,7 +400,7 @@ def main():
parser.add_argument(
"-warnings-as-errors",
default=None,
- help="Upgrades warnings to errors. Same format as '-checks'",
+ help="Upgrades warnings to errors. Same format as '-checks'.",
)
args = parser.parse_args()
More information about the cfe-commits
mailing list