I am missing 2 things that I like in my project and I don't want to eject. 1. Eslint Auto fix 2. StyleLint adding them can be done with a simple configuration in webpack. plugins: [ new StyleLintPlugin(), new webpack.LoaderOptionsPlugin({ options: { eslint: { fix: true }, }, }), ] can we add plugins to webpack without eject?