Description
Is your proposal related to a problem?
I'm always frustrated when the build command is linting my code and there is no way for me to skip the linting step. My pipeline is lint > test > build
. I want to lint before testing because my test files are also linted. With the current setup, linting happens twice.
Describe the solution you'd like
I would like to be able to opt out of linting: "build" : "react-scripts built --no-lint"
Or (even better) have linting separated from the build command so I can remove it. It would appear this way in the default setup:
"build": "react-scripts lint && react-scripts build"
The README never mentions that linting will happen within the build step, so this makes the actual process much more visible.
Describe alternatives you've considered
Somehow disabling linting by configuration before the build step happens.
Additional context
A related issue was auto-staled without solution:
#7078