analyze_js_file
Analyze JavaScript files to identify syntax errors, potential bugs, and code quality issues using ESLint for actionable fix suggestions.
Instructions
Analyze a JavaScript file for potential issues using ESLint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_path | Yes | Path to the JavaScript file to analyze |
Input Schema (JSON Schema)
{
"properties": {
"file_path": {
"description": "Path to the JavaScript file to analyze",
"type": "string"
}
},
"required": [
"file_path"
],
"type": "object"
}