vscode-javascript-booster icon indicating copy to clipboard operation
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!

Results 27 vscode-javascript-booster issues
Sort by recently updated
recently updated
newest added
trafficstars

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: ![](https://github.com/chenxxzhe/vscode-ext-split-line/raw/master/images/split-line-intro.gif) I found [this extension](https://marketplace.visualstudio.com/items?itemName=chenzhe.split-line)...

feature-request

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...

bug
good first issue

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?

help wanted
feature-request

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...

question

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...