From fccb1bc04ccd0df5f3855dbf73a142f876eab94e Mon Sep 17 00:00:00 2001 From: BoYanZh Date: Fri, 4 Oct 2024 06:51:10 -0400 Subject: [PATCH] fix: typo in cppcheck parser --- conf.json | 8 +++++++- expected.json | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/conf.json b/conf.json index 1d5b0df..ac8bc43 100644 --- a/conf.json +++ b/conf.json @@ -54,11 +54,17 @@ }, { "severity": [ - "probability", + "portability", "performance", "style" ], "score": 1 + }, + { + "severity": [ + "debug" + ], + "score": 0 } ] } diff --git a/expected.json b/expected.json index a92c60e..d2c39c8 100644 --- a/expected.json +++ b/expected.json @@ -1 +1 @@ -[{"name":"cppcheck","results":[{"score":95,"comment":"### Test results summary\n\n1. error: 1\n2. warning: 0\n3. probability: 0\n4. performance: 0\n5. style: 0\n6. information: 1"}],"force_quit":false}] +[{"name":"cppcheck","results":[{"score":95,"comment":"### Test results summary\n\n1. error: 1\n2. warning: 0\n3. portability: 0\n4. performance: 0\n5. style: 0\n6. information: 1\n7. debug: 0\n"}],"force_quit":false}]