This patch adds some basic supports for clang-tidy configurations in clangd:
- clangd will respect .clang-tidy configurations for each file
- we don't aim to support all clang-tidy options in clangd, only a small subset of condfigurations (options related to which checks will be enabled) are supported.
- add a clang-tidy-checks CLI option that can override options from .clang-tidy file
Could we instead call getRealFS() when we try to initialize a clang-tidy options provider in main() and avoid changing this?
To avoid adding extra non-real-fs "modes of operation" to ClangdLSPServer. Unless you see other uses for this.