What problem does it solve?
It removes the need to manually review and correct GDScript style and lint violations by providing deterministic linting and formatting guidance for Godot projects.
Core Features & Use Cases
- GDScript linting (gdlint): Detects rule violations like naming/style issues and reports them with file/line/rule details.
- Deterministic formatting (gdformat): Rewrites code to a consistent style in-place or via diff/check modes to prevent formatting churn.
- Offline, Godot-free execution: Runs as a standalone Python tool and does not require launching the Godot editor.
Use case: you modify a large batch of .gd files and want the agent output to match your repository’s conventions, avoid recurring CI lint failures, and keep formatting stable for clean diffs.
Quick Start
Install the matching gdtoolkit version for your Godot major version, then run lint and apply gdformat to your modified .gd files to eliminate style errors and enforce consistent formatting.