This PR updates the lint:test command, removing the --fix flag from it, and adds a test:lint:fix command, which has the same functionality as the old lint:test.
Others might have differing opinions, but in my experience I really don't usually want my default test command (that's used by other commands and is often something people run immediately when they clone/are trying to make a PR) to be making code changes.
Figured I'd throw up a quick PR for this. If including --fix is a desired approach, feel free to close this PR.
Thank you for the PR, @bnb! Having the test script also format code is my preferred approach, I'm happy to merge though if more people agree with this PR
This PR updates the
lint:test
command, removing the--fix
flag from it, and adds atest:lint:fix
command, which has the same functionality as the oldlint:test
.Others might have differing opinions, but in my experience I really don't usually want my default test command (that's used by other commands and is often something people run immediately when they clone/are trying to make a PR) to be making code changes.
Figured I'd throw up a quick PR for this. If including
--fix
is a desired approach, feel free to close this PR.