Skip to content

Instantly share code, notes, and snippets.

View awsomesawce's full-sized avatar
🎯
Learning NodeJS and getting certified!

Carl C awsomesawce

🎯
Learning NodeJS and getting certified!
View GitHub Profile
@awsomesawce
awsomesawce / README.md
Created July 20, 2021 17:30 — forked from watson/README.md
A list of search and replace unix commands to help make a node repository 'standard' compliant

The standard code style linter is a great tool by Feross - check it out!

Remove trailing semicolons:

find . -path ./node_modules -prune -o -type f -name '*.js' -exec sed -i '' -e 's/;$//' {} \;

Ensure space between function and opening bracket:

@awsomesawce
awsomesawce / README.md
Created October 4, 2020 07:07 — forked from hofmannsven/README.md
Git Cheatsheet