alpha
Login
or
Join now
mary.my.id
/
pkg-date-fns
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
small date utilities
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
chore: configure Zed to use deno fmt
author
Mary
date
3 days ago
(Jul 24, 2026, 11:24 AM +0700)
commit
12bc225f
12bc225fac41362fec3df25e2328610208ee50c3
parent
cf6562ff
cf6562ffeb5a39a934a8c00fb0c4d1df3da27e5e
+24
1 changed file
Expand all
Collapse all
Unified
Split
.zed
settings.json
+24
.zed/settings.json
View file
Reviewed
···
35
35
"!eslint"
36
36
],
37
37
"formatter": "language_server"
38
38
+
},
39
39
+
"JSON": {
40
40
+
"formatter": {
41
41
+
"external": {
42
42
+
"command": "deno",
43
43
+
"arguments": ["fmt", "--ext", "json", "-"]
44
44
+
}
45
45
+
}
46
46
+
},
47
47
+
"JSONC": {
48
48
+
"formatter": {
49
49
+
"external": {
50
50
+
"command": "deno",
51
51
+
"arguments": ["fmt", "--ext", "jsonc", "-"]
52
52
+
}
53
53
+
}
54
54
+
},
55
55
+
"Markdown": {
56
56
+
"formatter": {
57
57
+
"external": {
58
58
+
"command": "deno",
59
59
+
"arguments": ["fmt", "--ext", "md", "-"]
60
60
+
}
61
61
+
}
38
62
}
39
63
}
40
64
}