Describe the feature you would like
Currently, we use all global imports in the codebase (e.g. import "X") but this makes it hard to discover where a particular name is defined which can be annoying to readers and auditors of the code.
Instead these should be refactored to specific imports (e.g. import {A, B, C} from "X").
Additional context
No response
Describe the feature you would like
Currently, we use all global imports in the codebase (e.g.
import "X") but this makes it hard to discover where a particular name is defined which can be annoying to readers and auditors of the code.Instead these should be refactored to specific imports (e.g.
import {A, B, C} from "X").Additional context
No response