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
The pattern @/common/components/*/* might unintentionally prevent nested components or items which we probably don't want. To address this, we need to ensure that at the end of the path, we don't repeat the component or item name.
There might be few potential solution that are worth exploring:
a complex pattern that checks the above
custom eslint rule
disallow vscode to autocomplete such repetitions. (not quite sure if its possible)
Maybe we can disallow this via eslint config
import { AwesomeComponent } from "@/components/AwesomeComponent/AwesomeComponent
by configuring in the ESLint configuration with the following rule:
The text was updated successfully, but these errors were encountered: