Utensil's Zettelkasten-style forest of evergreen notes on math and tech. utensil.tngl.sh/forest/
0

Configure Feed

Select the types of activity you want to include in your feed.

Try dprint for formatting

author
utensil
date (Aug 17, 2025, 6:46 PM +0800) commit 245756b5 parent 9271de3b change-id rsotsupn
+34
+24
dprint.json
··· 1 + { 2 + "json": {}, 3 + "markdown": {}, 4 + "toml": {}, 5 + "dockerfile": {}, 6 + "ruff": {}, 7 + "jupyter": {}, 8 + "markup": {}, 9 + "yaml": {}, 10 + "excludes": [ 11 + "**/node_modules", 12 + "**/*-lock.json" 13 + ], 14 + "plugins": [ 15 + "https://plugins.dprint.dev/json-0.20.0.wasm", 16 + "https://plugins.dprint.dev/markdown-0.19.0.wasm", 17 + "https://plugins.dprint.dev/toml-0.7.0.wasm", 18 + "https://plugins.dprint.dev/dockerfile-0.3.3.wasm", 19 + "https://plugins.dprint.dev/ruff-0.4.7.wasm", 20 + "https://plugins.dprint.dev/jupyter-0.2.0.wasm", 21 + "https://plugins.dprint.dev/g-plane/markup_fmt-v0.23.1.wasm", 22 + "https://plugins.dprint.dev/g-plane/pretty_yaml-v0.5.1.wasm" 23 + ] 24 + }
+10
justfile
··· 151 151 fi 152 152 fi 153 153 154 + # https://dprint.dev/ 155 + # 156 + prep-dprint: 157 + which dprint || brew install dprint 158 + 159 + # The format is too massive, wait until it's really needed one day 160 + # 161 + check-dprint: 162 + dprint check --list-different 163 + 154 164 ## Enrich contents 155 165 156 166 # Inspired by https://github.com/Ranchero-Software/NetNewsWire/issues/978#issuecomment-1320911427