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
A rule to ensure that any class decorated with @Module() should have their class name end with Module.
Acceptance criteria
Incorrect:
@Module({imports: [TypeOrmModule.forFeature([Product]),})exportclassProducts{}// ⚠️ `Module classes should have a name that ends with the word `Module`
Description
A rule to ensure that any class decorated with
@Module()
should have their class name end withModule
.Acceptance criteria
Incorrect:
Correct:
The text was updated successfully, but these errors were encountered: