godot-gdscript-toolkit icon indicating copy to clipboard operation
godot-gdscript-toolkit copied to clipboard

Independent set of GDScript tools - parser, linter, formatter, and more

Results 82 godot-gdscript-toolkit issues
Sort by recently updated
recently updated
newest added

In my project I run both `gdlint` and `gdformat` and I found something what seems like a bug. I have a file with the following content: ``` static func on_quest_finished(_state:...

bug
formatter

I understand that it is not possible to port all Python features to GDScript, but for simple functions implementing algorithms without external dependencies, is it possible to use https://github.com/Scony/godot-gdscript-toolkit/wiki/2.-Parser to...

discussion

A couple of days ago it was working fine and now I cannot seem to format my files. Intellisense still seems to work. Running on Windows 10. Output from `pip3...

bug
help wanted

Before: ![image](https://user-images.githubusercontent.com/62715937/174488196-b9ca8b3c-df68-4c44-b7d3-b6c7632eb86e.png) After: ![image](https://user-images.githubusercontent.com/62715937/174488230-1e85b9e4-cfd1-4ffe-88d8-4dcdf9ac3899.png) using Visual Studio Code extension https://marketplace.visualstudio.com/items?itemName=Razoric.gdscript-toolkit-formatter

bug
formatter
VSCodeExtension

I'm using GDFormat in VS Code with the extension and in works really well, except that some lines (mostly at the end of functions) get deleted completely. The amount of...

bug
VSCodeExtension

Would be nice if the GDFormat plugin had a format on save option.

enhancement

Just installed the toolkit with `pip3 install 'gdtoolkit==3.*'` Launched `gdformat --diff .` in the project folder. I get this output in my terminal: ``` Traceback (most recent call last): File...

bug
help wanted

Version: 3.3.1 I am using a unit test library which uses method chaining and I'm running into an issue where `gdlint` and `gdformat` do not agree with each other. `gdformat`...

bug
formatter

``` find ./ | grep "\.gd$" | xargs gdformat --line-length 200 ``` on ``` extends ORMMaterial3D func _ready() -> void: pass match ( ``` cause ``` Traceback (most recent call...

bug
formatter