soates / Auto-Import

vscode extension that will automatically finds, parses and provides code actions for all available imports. Only currently works with files in your folder and TypeScript.
MIT License
164 stars 62 forks source link

Auto-import aggressively adds node-sass imports #112

Open d07RiV opened 3 years ago

d07RiV commented 3 years ago

Node-sass exports a lot of common names like "info", "render" etc, so when typing code containing those words the extension often auto-imports node-sass, which breaks the build and leads to very confusing errors (fs.existsSync is not a function).

Would be nice if there was an option to blacklist certain paths.