๐Ÿš€ Grammar-Aware Code Formatter: Structure through separation (supports Go, JavaScript, TypeScript, JSX, and TSX)
go formatter code-formatter javascript typescript jsx tsx

docs(README): Update usage examples

fuwn.net ab962196 0b025ac2

verified
+2 -2
+2 -2
README.md
··· 38 38 39 39 ```bash 40 40 # Format stdin 41 - echo 'package main...' | iku 41 + echo 'package main ...' | iku 42 42 43 43 # Format and print to stdout 44 44 iku file.go ··· 47 47 iku -w file.go 48 48 49 49 # Format entire directory 50 - iku -w ./... 50 + iku -w . 51 51 52 52 # List files that need formatting 53 53 iku -l .