analyze-quality
Analyze code quality by specifying repository paths, inclusion/exclusion patterns, severity levels, and issue limits to identify and report coding issues effectively.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
excludePaths | No | Patterns of files to exclude | |
includePaths | No | Patterns of files to include | |
maxIssues | No | Maximum number of issues to report | |
minSeverity | No | Minimum severity level to report | |
repositoryPath | Yes | Path to the repository to analyze |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"excludePaths": {
"description": "Patterns of files to exclude",
"items": {
"type": "string"
},
"type": "array"
},
"includePaths": {
"description": "Patterns of files to include",
"items": {
"type": "string"
},
"type": "array"
},
"maxIssues": {
"description": "Maximum number of issues to report",
"type": "number"
},
"minSeverity": {
"description": "Minimum severity level to report",
"enum": [
"error",
"warning",
"info"
],
"type": "string"
},
"repositoryPath": {
"description": "Path to the repository to analyze",
"type": "string"
}
},
"required": [
"repositoryPath"
],
"type": "object"
}