Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions data/software-tools/cppcheck.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"@context": "https://w3id.org/everse/rs#",
"@id": "https://w3id.org/everse/tools/cppcheck",
"@type": "schema:SoftwareApplication",
"name": "Cppcheck",
"description": "Static analysis tool for C/C++ that focuses on detecting undefined behavior, dangerous coding constructs, and real defects with low false positives; supports coding standards like MISRA and CERT, improving maintainability, reliability, security, and safety of research software.",
"url": "https://cppcheck.sourceforge.io/",
"isAccessibleForFree": true,
"hasQualityDimension": [
{ "@id": "dim:Maintainability", "@type": "@id" },
{ "@id": "dim:Reliability", "@type": "@id" },
{ "@id": "dim:Security", "@type": "@id" },
{ "@id": "dim:Safety", "@type": "@id" }
],
"howToUse": ["command-line", "CI/CD"],
"appliesToProgrammingLanguage": ["C", "C++"],
"license": { "@id": "https://spdx.org/licenses/GPL-3.0-or-later", "@type": "@id" },
"applicationCategory": [
{ "@id": "rs:PrototypeTool", "@type": "@id" },
{ "@id": "rs:ResearchInfrastructureSoftware", "@type": "@id" }
]
}
Loading