Skip to content

Instantly share code, notes, and snippets.

View peshala-prabhapoorna's full-sized avatar

Peshala Prabhapoorna peshala-prabhapoorna

View GitHub Profile
@peshala-prabhapoorna
peshala-prabhapoorna / README.md
Last active June 28, 2025 14:15
Prettier pre-commit hook

Prettier Pre-commit Hook

Re-format your files that are marked as “staged” with Prettier. Save this script as .git/hooks/pre-commit and give it execute permission.

Pre-commit Hook · Prettier.

@peshala-prabhapoorna
peshala-prabhapoorna / README.md
Last active June 28, 2025 14:18
Gofmt pre-commit hook

Gofmt Pre-commit Hook

A shell script to check and format only the staged .go files before committing. If any staged Go files are not properly formatted, it automatically formats them using gofmt, lists the affected files, and prevents the commit so you can stage the changes and try again.

Save this script as .git/hooks/pre-commit and give it execute permission.

@peshala-prabhapoorna
peshala-prabhapoorna / index.html
Last active February 8, 2025 07:38
Selectively redirecting `console.log()` output to an element in the page.
<div id="output"></div>
<script src="redirectLog.js"></script>