You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WebStorm has very helpful feature - Optimize Imports, that just remove unused imports, but doesn't touch barely imports.
Also it merge same module imports into one and sort by import names
import{foo}from'./module';import{bar}from'./module';// optimize to import{bar,foo}from'./module';
The text was updated successfully, but these errors were encountered:
WebStorm has very helpful feature - Optimize Imports, that just remove unused imports, but doesn't touch barely imports.
Also it merge same module imports into one and sort by import names
The text was updated successfully, but these errors were encountered: