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

I was wondering Why the extention stopped offering code actions in files as they grew. Türnes out, newer typescript features can cause booster to report a syntax error and stop...

Webstorm has a really nice feature to explicitly set the return type on a function based on the type of the returned value. I think this would be a really...

There are some quick fixes which I will never use, for example "split into declaration and initialization". It is annoying that these add noise to the quick fixes menu, especially...

The `useCallback` quick fix is great! Perhaps we could provide a similar fix for `useMemo`? E.g. to convert ```ts const value = expensiveFn({ someProp }) ``` to ```ts const value...

```ts function identity(t: T): T { return t; } ``` After executing "convert to arrow function": Expected output: ```ts const identity = (t: T): T => { return t; };...

I saw this in the docs: > Unlike VS Code's embedded commands (editor.action.smartSelect.*), this extension uses an abstract syntax tree under the hood, which provides much more accurate results. However,...

Hi there! What is the name of your Color Theme?

I find inline refactoring very useful (coming from IntelliJ world: https://www.jetbrains.com/help/idea/inline.html). before: ``` method() { const number = anotherClass.intValue(); const b = a + number; } ``` after: ``` method()...

feature-request

Is there any way to convert between these three types of syntaxes? (object literal) ``` { key: 'val', fn() { } } ``` (statement) ``` let key = 'val'; function...

Hello! This plugin looks very interesting but limited to VSCode only. However, the server part is isolated enough to be useful as a standalone language server for JS refactoring. It...