-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathcppcheck.json
More file actions
22 lines (22 loc) · 1.04 KB
/
cppcheck.json
File metadata and controls
22 lines (22 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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" }
]
}