JOJ3-config-generator/tests/convert/cppcheck/task.toml
张泊明518370910136 df5295258f
Some checks failed
build / build (push) Failing after 48s
feat: alias to all underscore
2025-06-02 19:20:36 -04:00

19 lines
722 B
TOML

# general task configuration
task.name = "hw7 ex2" # task name
release.end-time = 2024-12-30 23:59:59+08:00
release.begin-time = 2024-12-29 23:59:59+08:00
[[stages]]
name = "[cq] Cppcheck"
command = "cppcheck --template='{\"file\":\"{file}\",\"line\":{line}, \"column\":{column}, \"severity\":\"{severity}\", \"message\":\"{message}\", \"id\":\"{id}\"}' --force --enable=all --suppress=missingIncludeSystem --quiet h7/ex2.cpp"
limit.stderr = "65m"
parsers = [ "cppcheck", "result-detail" ]
cppcheck.keyword = ["error", "warning", "portability", "performance", "style"]
cppcheck.weight = [15, 5, 5, 5, 5]
result-detail.exit-status = true
result-detail.stderr = true
result-detail.time = false
result-detail.mem = false