Init clang tidy (#195)

This commit is contained in:
Myriad-Dreamin
2025-09-06 16:23:20 +08:00
committed by GitHub
parent 0d56dbf192
commit 658c33a01f
6 changed files with 45 additions and 6 deletions

View File

@@ -0,0 +1,6 @@
### clice configuration
[server]
# Enable clang-tidy diagnostics.
clang_tidy = true

View File

@@ -0,0 +1,6 @@
#include <iostream>
int main() {
std::cout << "Hello World!" << std::endl;
return 0;
}