Explore >> Select a destination


You are here

kewah.com
| | mark.biek.org
4.5 parsecs away

Travel
| | At work, we've spent a lot of time trying to figure out the best way to handling linting Pull Requests. We had some success with [mergeatron](https://github.com/SnapInteractive/mergeatron) + Jenkins for a long time, but eventually started to run into problems (like it crashing the server it was running on and being super slow). We spent some...
| | blog.codeminer42.com
1.5 parsecs away

Travel
| | In this article, the author brings all the information you need about ESLint, Prettier and Husky to ensure code quality and adherence to best practices.
| | hjr265.me
5.1 parsecs away

Travel
| | Git has this great feature that I think is well-known but under-used. I am talking about Git hooks. With Git hooks, you can run scripts during different Git actions. Like this one: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 #!/bin/sh GOFILES=`git diff --name-only --cached | grep -e '.go$' | grep -ve 'vendor/'` UNFMTFILES=() for f in $GOFILES; do if [ -n "`gofmt -l -s .
| | www.codevoid.net
10.7 parsecs away

Travel
| Developer inner loops are critical. Getting them setup requires many steps. I take a few steps to make the simplest cases simple in Visual Studio Code and Panic Nova.