Files
LoraSA/.vscode/tasks.json
Oleksii Mandrychenko 32737a77b0 Add formatter
2024-08-08 22:21:08 -07:00

16 lines
380 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Format All Files with ClangFormat",
"type": "shell",
"command": "find . -name '*.cpp' -o -name '*.h' | xargs clang-format -i",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
}
]
}