@@ -264,17 +264,17 @@ def main():
264
264
help = "allow alpha checkers from clang-analyzer." ,
265
265
)
266
266
parser .add_argument (
267
- "-clang-tidy-binary" , metavar = "PATH" , help = "path to clang-tidy binary"
267
+ "-clang-tidy-binary" , metavar = "PATH" , help = "path to clang-tidy binary. "
268
268
)
269
269
parser .add_argument (
270
270
"-clang-apply-replacements-binary" ,
271
271
metavar = "PATH" ,
272
- help = "path to clang-apply-replacements binary" ,
272
+ help = "path to clang-apply-replacements binary. " ,
273
273
)
274
274
parser .add_argument (
275
275
"-checks" ,
276
276
default = None ,
277
- help = "checks filter, when not specified, use clang-tidy default" ,
277
+ help = "checks filter, when not specified, use clang-tidy default. " ,
278
278
)
279
279
config_group = parser .add_mutually_exclusive_group ()
280
280
config_group .add_argument (
@@ -350,16 +350,16 @@ def main():
350
350
help = "number of tidy instances to be run in parallel." ,
351
351
)
352
352
parser .add_argument (
353
- "files" , nargs = "*" , default = [".*" ], help = "files to be processed (regex on path)"
353
+ "files" , nargs = "*" , default = [".*" ], help = "files to be processed (regex on path). "
354
354
)
355
- parser .add_argument ("-fix" , action = "store_true" , help = "apply fix-its" )
355
+ parser .add_argument ("-fix" , action = "store_true" , help = "apply fix-its. " )
356
356
parser .add_argument (
357
- "-format" , action = "store_true" , help = "Reformat code after applying fixes"
357
+ "-format" , action = "store_true" , help = "Reformat code after applying fixes. "
358
358
)
359
359
parser .add_argument (
360
360
"-style" ,
361
361
default = "file" ,
362
- help = "The style of reformat code after applying fixes" ,
362
+ help = "The style of reformat code after applying fixes. " ,
363
363
)
364
364
parser .add_argument (
365
365
"-use-color" ,
@@ -388,7 +388,7 @@ def main():
388
388
help = "Additional argument to prepend to the compiler command line." ,
389
389
)
390
390
parser .add_argument (
391
- "-quiet" , action = "store_true" , help = "Run clang-tidy in quiet mode"
391
+ "-quiet" , action = "store_true" , help = "Run clang-tidy in quiet mode. "
392
392
)
393
393
parser .add_argument (
394
394
"-load" ,
@@ -400,7 +400,7 @@ def main():
400
400
parser .add_argument (
401
401
"-warnings-as-errors" ,
402
402
default = None ,
403
- help = "Upgrades warnings to errors. Same format as '-checks'" ,
403
+ help = "Upgrades warnings to errors. Same format as '-checks'. " ,
404
404
)
405
405
args = parser .parse_args ()
406
406
0 commit comments