Skip to content

Commit c328a91

Browse files
committed
Initial commit
0 parents  commit c328a91

12 files changed

+677
-0
lines changed

.vscode/extensions.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"recommendations": [
3+
"denoland.vscode-deno",
4+
"streetsidesoftware.code-spell-checker"
5+
]
6+
}

.vscode/settings.json

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"deno.enable": true,
3+
"deno.unstable": true,
4+
"files.eol": "\n",
5+
"files.insertFinalNewline": true,
6+
"files.trimFinalNewlines": true,
7+
"[json]": {
8+
"editor.defaultFormatter": "vscode.json-language-features",
9+
"editor.formatOnSave": true
10+
},
11+
"[jsonc]": {
12+
"editor.defaultFormatter": "vscode.json-language-features",
13+
"editor.formatOnSave": true
14+
},
15+
"[typescript]": {
16+
"editor.defaultFormatter": "denoland.vscode-deno",
17+
"editor.formatOnSave": true,
18+
"editor.codeActionsOnSave": {
19+
"source.sortImports": "always"
20+
}
21+
},
22+
"cSpell.words": [
23+
"fedify"
24+
]
25+
}

.zed/settings.json

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"deno": {
3+
"enable": true
4+
},
5+
"ensure_final_newline_on_save": true,
6+
"format_on_save": "on",
7+
"formatter": "language_server",
8+
"languages": {
9+
"TypeScript": {
10+
"language_servers": [
11+
"deno",
12+
"!typescript-language-server",
13+
"!vtsls",
14+
"!eslint",
15+
"..."
16+
]
17+
},
18+
"TSX": {
19+
"language_servers": [
20+
"deno",
21+
"!typescript-language-server",
22+
"!vtsls",
23+
"!eslint",
24+
"..."
25+
]
26+
}
27+
},
28+
"show_wrap_guides": true,
29+
"wrap_guides": [80]
30+
}

LICENSE

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
MIT License
2+
3+
Copyright 2024 Hong Minhee
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of
6+
this software and associated documentation files (the "Software"), to deal in
7+
the Software without restriction, including without limitation the rights to
8+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9+
the Software, and to permit persons to whom the Software is furnished to do so,
10+
subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

deno.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "@fedify/redis",
3+
"exports": {
4+
".": "./mod.ts",
5+
"./codec": "./src/codec.ts",
6+
"./kv": "./src/kv.ts"
7+
},
8+
"imports": {
9+
"@fedify/fedify": "jsr:@fedify/fedify@^0.10.0",
10+
"@std/assert": "jsr:@std/assert@^0.226.0",
11+
"ioredis": "npm:ioredis@^5.4.0"
12+
},
13+
"tasks": {
14+
"test": "deno test --allow-net --allow-env"
15+
}
16+
}

0 commit comments

Comments
 (0)