On page 39, it is presented the following command to format:
"format": "eslint --fix . && prettier --loglevel warn --write ."
When running it, there is a following warning:
β npm run format
test-driven-palindromes@1.0.0 format
eslint --fix . && prettier --loglevel warn --write .[warn] Ignored unknown option --loglevel=warn. Did you mean --log-level?
Changing the command as suggested, works fine:
"format": "eslint --fix . && prettier --log-level warn --write ."