CppCheck added

This commit is contained in:
Jens True 2022-01-04 13:31:31 +00:00
parent 1a93b07f73
commit ee24d95a65
2 changed files with 22 additions and 0 deletions

@ -8,6 +8,11 @@ steps:
- apt-get -y install libusb-1.0 - apt-get -y install libusb-1.0
- make - make
- name: check
image: neszt/cppcheck-docker
commands:
cppcheck *.c
- name: docs - name: docs
image: corentinaltepe/doxygen image: corentinaltepe/doxygen
commands: commands:

17
.vscode/c_cpp_properties.json vendored Normal file

@ -0,0 +1,17 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"/usr/include/libusb-1.0"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "gnu17",
"cppStandard": "gnu++14",
"intelliSenseMode": "linux-gcc-x64"
}
],
"version": 4
}