Pre Redesign

This commit is contained in:
2026-01-21 03:25:52 +05:30
parent 71fc7ae581
commit dedf28c6cb
58 changed files with 605 additions and 483 deletions

13
.vscode/launch.json vendored
View File

@ -3,24 +3,13 @@
"configurations": [
{
"name": "Debug (Linux)",
"type": "cppdbg",
"type": "lldb",
"request": "launch",
"program": "${command:cmake.launchTargetPath}",
"args": [
"dummy"
],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "CMake Build"
}
]

View File

@ -1,5 +1,9 @@
{
"editor.formatOnSave": true,
"C_Cpp.codeAnalysis.runAutomatically": "onSave",
"C_Cpp.codeAnalysis.clangTidy.enabled": true,
"C_Cpp.codeAnalysis.clangTidy.useBuildPath": false,
"C_Cpp.codeAnalysis.clangTidy.config": "",
"C_Cpp.clang_format_fallbackStyle": "Microsoft",
"cmake.copyCompileCommands": "${workspaceFolder}/compile_commands.json"
"cmake.copyCompileCommands": "${workspaceFolder}/compile_commands.json",
}