This is an archive of the discontinued LLVM Phabricator instance.

Parallel-libs/.clang-tidy: Remove broken config and simplify existing one to use inheritance from the root .clang-tidy
AbandonedPublic

Authored by dblaikie on Jun 7 2021, 2:25 PM.

Details

Reviewers
arsenm
Summary

parallel-libs/.clang-tidy seems to have been broken from the start (but
unused) due to using "lowerCase" as a format name (rather than
"lower_case") which actually crashes clang-tidy. But since no code is in
that directory, all uses of clang-tidy used the override in
acxxel/.clang-tidy.

So to simplify things, I've sunk the acxxel format down/up into the
general format, and changed it to use inheritance from the llvm monorepo
root .clang-tidy for simplicity/so it can inherit features from there.

Diff Detail

Event Timeline

dblaikie requested review of this revision.Jun 7 2021, 2:25 PM
dblaikie created this revision.
Herald added a project: Restricted Project. · View Herald TranscriptJun 7 2021, 2:25 PM
dblaikie abandoned this revision.Oct 21 2021, 1:47 PM

Abandon in favor of D112265