small array utilities
0

Configure Feed

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

chore: configure Zed to format files through deno fmt

+24
+24
.zed/settings.json
··· 35 35 "!eslint" 36 36 ], 37 37 "formatter": "language_server" 38 + }, 39 + "JSON": { 40 + "formatter": { 41 + "external": { 42 + "command": "deno", 43 + "arguments": ["fmt", "--ext", "json", "-"] 44 + } 45 + } 46 + }, 47 + "JSONC": { 48 + "formatter": { 49 + "external": { 50 + "command": "deno", 51 + "arguments": ["fmt", "--ext", "jsonc", "-"] 52 + } 53 + } 54 + }, 55 + "Markdown": { 56 + "formatter": { 57 + "external": { 58 + "command": "deno", 59 + "arguments": ["fmt", "--ext", "md", "-"] 60 + } 61 + } 38 62 } 39 63 } 40 64 }