Does the ClangFormat BasedOnStyle style option have a default value that's applied if one's not selected by the user, and if so, what is that default value?
According to the BasedOnStyle option section of the CLANG-FORMAT STYLE OPTIONS documentation for Clang 12, BasedOnStyle is a configurable format style option that can be one of LLVM, Google, Chromium, Mozilla, WebKit, Microsoft, or GNU. There's no mention in that section however of whether BasedOnStyle even has a default value.
I searched online for documentation to answer this but didn't find any. Scanning through all of the clang-format tagged questions on SO for uses of BasedOnStyle also revealed no answers. Given that ClangFormat is from the LLVM project it'd be unsurprising that this option defaults to LLVM but that assumes that this option has a default which seems unclear to begin with.