sfirke commented on PR #37304: URL: https://github.com/apache/superset/pull/37304#issuecomment-3800232094
Sorry you are having such trouble. If it's any consolation, debugging your development environment is good real-world practice if you want to make further open-source contributions. I've had my share of trouble with this over my time contributing to Superset! Look at the failing logs for pre-commit and you'll see that `prettier` failed with:: ```` ❌ Pre-commit check failed (exit code: 1). 🔍 Modified files: superset-frontend/src/components/ListView/ListView.tsx ``` Prettier fixes things like whitespace and indentation. It even makes the change to the file. But when it runs on cloud CI like this, that doesn't help. You need to run `prettier` locally, see what it changed, commit that change, then run it again and `prettier` should pass. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
