vscode-javascript-booster
vscode-javascript-booster copied to clipboard
Sprinkle extra refactorings, code actions and commands over your JavaScript! 🍩 TypeScript and Flow are first class citizens as well!
This ``` if (condition) { this.text = "one"; } else { this.text = "two"; } ``` becomes: `condition ? this.text = "one" : this.text = "two";` instead of the desired:...
- Issue Type: `Performance` - Extension Name: `vscode-javascript-booster` - Extension Version: `14.0.1` - OS Version: `Windows_NT ia32 10.0.10240` - VS Code version: `1.59.0` :warning: Make sure to **attach** this file...
Hi 👋 Thanks for this very useful extension 🙏 I was looking for a code action to split/merge an array into multiple/single lines, like so:  I found [this extension](https://marketplace.visualstudio.com/items?itemName=chenzhe.split-line)...
Thank you for a very helpful tool. Today I found a problem when the refactor target uses generics. Original code -- function isEnumKey(enumSrc: T, key: unknown): key is keyof T...
In particular, is there a way to configure the extension to work with `.svelte` files which can contain JavaScript and TypeScript code?
I noticed today that quite often I have something like ```javascript if (someVar === 'value1') { } ``` and then I need to add another possible value so I either...
I'm a [VS Codium](https://github.com/VSCodium/vscodium) user, a FLOSS version of VS Code, it's the same code but without the Microsoft's telemetry and branding. I want to request if possible to add...
Awsome tool. Will you support js in a `.vue` file?
Hello, I have this extension installed and I can not trigger any codemod, not from the context menu (there is no bulb icon when I select an arrow function) nor...
Would it be possible to specify local, project specific codemods, that this extension can pick up? Like a plugin system. This would be very useful for incremental migration, where a...