Commit 2528224
authored
[.gitignore] Ignore .clangd config file (llvm#174287)
If anyone wants to use a custom `.clangd` config in the repo, they will
need to manually "git ignore it". Since clangd is a popular tool and
`.clangd` config is usually set up per-person, it's beneficial to add it
to gitignore.
As a matter of fact, I wanted to enable diagnostics from all clang-tidy
checks in IDE, with such config:
```
Diagnostics:
ClangTidy:
FastCheckFilter: None
```
(By default, clangd will skip some "expensive" checks like
const-correctness)1 parent 60bf381 commit 2528224
1 file changed
+1
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
73 | 73 | | |
74 | 74 | | |
75 | 75 | | |
| 76 | + | |
76 | 77 | | |
77 | 78 | | |
78 | 79 | | |
| |||
0 commit comments