Skip to content

Instantly share code, notes, and snippets.

View princ3od's full-sized avatar
🤟
Focusing

trong princ3od

🤟
Focusing
View GitHub Profile
@curran
curran / README.md
Last active April 27, 2024 20:19
United Nations World Population Prospects 2019
@TimothyJones
TimothyJones / handover-documentation-checklist.md
Last active March 18, 2024 08:26
Handover documentation checklist

Handover documentation

Here's a list of things I find useful to check off when writing handover documentation for source code.

General sanity checks

These get checked at the end, but they're at the front of the document because they're good to keep in mind the whole time

  • Do these instructions work cross-platform? If not, which platform do they work on?
  • If the source of truth is not this document, should some of the questions be answered with links (to eg confluence/other repos)
@phatnguyenuit
phatnguyenuit / how-to-sort-imports-like-a-pro.md
Last active July 3, 2024 21:28
How to sort imports like a pro in TypeScript

How to sort imports like a pro in TypeScript

Crossing reviews becomes a very common activity today in engineering behavior. To help us review changes for pull/merge requests easier, sorting imports can help us a much. The codebase becomes more professional and more consistent, reviewers will be happier, and the review process will be faster, focusing on the implementation changes ONLY.

Have you ever thought about how to sort imports in TypeScript projects automatically?

Let me show you how to archive sorting imports automatically in TypeScript projects with ESLint!