-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathcheckstyle.json
More file actions
27 lines (27 loc) · 1022 Bytes
/
checkstyle.json
File metadata and controls
27 lines (27 loc) · 1022 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"@context": "https://w3id.org/everse/rs#",
"@id": "https://w3id.org/everse/tools/checkstyle",
"@type": "schema:SoftwareApplication",
"name": "Checkstyle",
"description": "Java code style checker that enforces coding standards and best practices in research software projects, improving code maintainability and readability through automated style analysis.",
"url": "https://checkstyle.sourceforge.io/",
"isAccessibleForFree": true,
"hasQualityDimension": {
"@id": "dim:maintainability",
"@type": "@id"
},
"howToUse": ["command-line", "CI/CD"],
"appliesToProgrammingLanguage": ["Java"],
"license": "https://opensource.org/licenses/LGPL-2.1",
"applicationCategory": [
{ "@id": "rs:PrototypeTool", "@type": "@id" },
{ "@id": "rs:ResearchInfrastructureSoftware", "@type": "@id" },
{ "@id": "rs:AnalysisCode", "@type": "@id" }
],
"measuresQualityIndicator": [
{
"@id": "https://w3id.org/everse/i/indicators/has_no_linting_issues",
"@type": "@id"
}
]
}