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
{{ message }}
This repository was archived by the owner on May 2, 2022. It is now read-only.
Describe the bug
I noticed that you get an eslint error in all the webpack config files when running the husky pre-commit action. It gives a no-redeclare since they have inline comments for global variables at the top, but we already define them in .eslintrc:
Describe the bug
I noticed that you get an
eslinterror in all the webpack config files when running thehuskypre-commit action. It gives ano-redeclaresince they have inline comments for global variables at the top, but we already define them in.eslintrc:Steps to Reproduce
huskypre-commit hook.Expected behavior
Default scaffolding should not error on first commit.
Suggested Solution
We should also add
"require": trueto that list and remove the inline comments in these files:/config/webpack.common.js/config/webpack.dev.js/config/webpack.prod.js/config/webpack.settings.jsI will submit a PR shortly.