|
You are here |
biomejs.dev | ||
| | | | |
hjr265.me
|
|
| | | | | 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
|
|
| | | | | Learn how to use ESLint and Prettier together to automatically format and fix JavaScript code in your projects. | |
| | | | |
nabeelvalley.co.za
|
|
| | | | | Debug Node.js code using your browser's dev tools | |
| | | | |
www.taniarascia.com
|
|
| | | 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... | ||