mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-06-08 14:11:56 -07:00
24 lines
345 B
Markdown
24 lines
345 B
Markdown
# Types
|
|
|
|
To check types run:
|
|
|
|
```sh
|
|
npx --package typescript tsc --noEmit --pretty false | grep -v "modules/"
|
|
```
|
|
|
|
# Code
|
|
|
|
ALWAYS
|
|
|
|
- fast
|
|
- KISS
|
|
- DRY
|
|
- very well organized
|
|
- contained
|
|
- colocated
|
|
- prefer one concept per file
|
|
- prefer more files and folders than big files
|
|
- reads like english
|
|
- very easy to understand
|
|
- very easy to maintain
|