Explore >> Select a destination


You are here

biomejs.dev
| | hjr265.me
7.2 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 .
| | blog.logrocket.com
6.7 parsecs away

Travel
| | Learn how to use ESLint and Prettier together to automatically format and fix JavaScript code in your projects.
| | nabeelvalley.co.za
6.5 parsecs away

Travel
| | Debug Node.js code using your browser's dev tools
| | www.taniarascia.com
24.2 parsecs away

Travel
| Can I just have a tutorial that tells me exactly what I need to do and know to set up Gulp, without spiraling into some unrelated discussion...