wix-incubator / vscode-glean

The extension provides refactoring tools for your React codebase
MIT License
1.46k stars 56 forks source link

Allow to not use FC<Type> #147

Open danielo515 opened 2 years ago

danielo515 commented 2 years ago

Hello again. Thanks for this time saving extension. I was wondering if it will be possible to configure it to not use the FC<Type> type utility. It is not recommended and not all codebases follow that convention. It is taking me a lot of time to manually change those to the (props: Type) => that we use.

Thanks in advance

maurer2 commented 2 years ago

Hello, as a workaround you could use VFC<Type> or VoidFunctionComponent<Type>.

Cheers