January 13, 2023 at 12:00 am
Comments posted to this topic are about the item Using pre-commit to prevent simple mistakes
January 16, 2023 at 5:15 am
Thank you for the interesting article. I saw the SQL patterns sought had to do mainly with formatting. Woud any of this cause an issue with a git commit ?
Would you know any article or series on CI/CD ?
----------------------------------------------------
January 16, 2023 at 11:22 am
If you run pre-commit install
then you are telling the pre-commit tool to block any commit that doesn't comply with the linters/formatters.
This can be a good thing for two reasons
There are cases where you might have a legitimate need to ignore the rules and you can mark your code to do that.
In terms of good books, two of the best are
I work for a company that uses GitHub workflows. They are good enough for what we do as we take pains to make things as simple as possible. There's a cost associated with Github workflows so a key thing for us is to be able to do what the GitHub workflows do locally as much as possible.
Ultimately we want to make sure that the following takes place
January 16, 2023 at 8:10 pm
Much appreciated , thank you for the information.
----------------------------------------------------
May 18, 2023 at 7:13 pm
This was removed by the editor as SPAM
May 18, 2023 at 7:14 pm
This was removed by the editor as SPAM
May 18, 2023 at 7:15 pm
This was removed by the editor as SPAM
Viewing 7 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic. Login to reply