run_linter
Run standardized linting for projects, enabling automatic fixes and targeting specific files to ensure code quality and consistency.
Instructions
Run standardized linter for the project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
files | No | Specific files to lint | |
fix | No | Attempt to fix issues automatically |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"files": {
"description": "Specific files to lint",
"items": {
"type": "string"
},
"type": "array"
},
"fix": {
"default": false,
"description": "Attempt to fix issues automatically",
"type": "boolean"
}
},
"type": "object"
}