Is there a way to efficiently organize the code within a .js / .ts file using Vscode? Specifically, when working inside a Class, my goal is to have static variables at the top, followed by variables, then methods, and so on automatically.
I did some research by googling "vscode rearrange code," but all results led me to Prettier, which unfortunately doesn't offer this specific functionality.
Could it be that this feature is not available for Javascript? In comparison, Android Studio (Java) does provide an option to achieve this kind of organization.
It's worth noting that I am not referring to rearranging imports, as I am already aware that Vscode has the capability to handle that.