-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove magefile? #299
Comments
Well, I normally use Goland. How do we keep things consistent? |
Not sure. I tried running mage as a pre-commit program but that doesn't really work because of auto staging. Honestly, pre-commit is fine but it's a pain if it's not in line with what the CI runs. The CI runs:
pre-commit runs: mage runs:
mage can also run (I've never done that):
IMO, most of what pre-commit does is good and should also be part of the CI. We could of course do all that with mage and simply run mage in the CI. I'm not a fan but maybe that's the way to go. |
Have no problems either way. |
@fzipi I really don't like the magefile approach. It may be flexible but it doesn't play nice with pre-commit, for example. One issue that leads to is that we have a lot of commits where we reorder imports, depending on whether we ran mage or not.
Another issue: VS Code by default updates import order on save, so changing the order with mage and gosimport is only temporary.
The text was updated successfully, but these errors were encountered: