Author: mitchell Date: 2025-12-26T10:12:38+08:00 New Revision: ae9f229b94cd29c366e6ead7cdf4672332ae11eb
URL: https://github.com/llvm/llvm-project/commit/ae9f229b94cd29c366e6ead7cdf4672332ae11eb DIFF: https://github.com/llvm/llvm-project/commit/ae9f229b94cd29c366e6ead7cdf4672332ae11eb.diff LOG: [clang-tidy] Remove `allow-long-titles` option in doc8 config (#173519) There is a bug in `doc8` where `allow-long-titles` option incorrectly skipping non-title lines. So we have to disable it before they solve the problem and make a new release. Added: Modified: clang-tools-extra/clang-tidy/doc8.ini Removed: ################################################################################ diff --git a/clang-tools-extra/clang-tidy/doc8.ini b/clang-tools-extra/clang-tidy/doc8.ini index 0e5b93511b967..80690d665c74d 100644 --- a/clang-tools-extra/clang-tidy/doc8.ini +++ b/clang-tools-extra/clang-tidy/doc8.ini @@ -1,4 +1,3 @@ [doc8] - -allow-long-titles = true -ignore-path=clang-tools-extra/docs/clang-tidy/Integrations.rst +ignore-path = clang-tools-extra/docs/clang-tidy/Integrations.rst, + clang-tools-extra/docs/clang-tidy/checks/abseil/unchecked-statusor-access.rst _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
