analyze_file
Identifies potential issues in source code by leveraging Xcode's static analyzer, ensuring code quality and reliability in development workflows.
Instructions
Analyzes a source file for potential issues using Xcode's static analyzer.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | Path to the source file to analyze. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filePath": {
"description": "Path to the source file to analyze.",
"type": "string"
}
},
"required": [
"filePath"
],
"type": "object"
}