Description
When using Initializable.sol, it's a good practice calling disableInitializers() in the constructor, such that the implementation itself can't be initialized.
Recommendation
Use:
constructor() {
_disableInitializers();
}Status
Addressed in #1a1c899.