Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion .github/copilot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ You may use the **#web search** feature to gather additional information on the
> "isAccessibleForFree": true,
> "hasQualityDimension": { "@id": "dim:fairness", "@type": "@id" },
> "howToUse": [ "CI/CD", "command-line" ],
> "license": { "@id":"https://spdx.org/licenses/Apache-2.0", "@type": "@id" },
> "license": "https://spdx.org/licenses/Apache-2.0",
> "applicationCategory": { "@id":"rs:PrototypeTool", "@type": "@id" }
> }
> ```
Expand Down
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": "https://spdx.org/licenses/GPL-3.0-or-later",
"applicationCategory": [
{ "@id": "rs:PrototypeTool", "@type": "@id" },
{ "@id": "rs:ResearchInfrastructureSoftware", "@type": "@id" }
]
}