Unverified Commit c328a91a authored by Hong Minhee's avatar Hong Minhee
Browse files

Initial commit

parents
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
{
  "recommendations": [
    "denoland.vscode-deno",
    "streetsidesoftware.code-spell-checker"
  ]
}

.vscode/settings.json

0 → 100644
+25 −0
Original line number Diff line number Diff line
{
  "deno.enable": true,
  "deno.unstable": true,
  "files.eol": "\n",
  "files.insertFinalNewline": true,
  "files.trimFinalNewlines": true,
  "[json]": {
    "editor.defaultFormatter": "vscode.json-language-features",
    "editor.formatOnSave": true
  },
  "[jsonc]": {
    "editor.defaultFormatter": "vscode.json-language-features",
    "editor.formatOnSave": true
  },
  "[typescript]": {
    "editor.defaultFormatter": "denoland.vscode-deno",
    "editor.formatOnSave": true,
    "editor.codeActionsOnSave": {
      "source.sortImports": "always"
    }
  },
  "cSpell.words": [
    "fedify"
  ]
}

.zed/settings.json

0 → 100644
+30 −0
Original line number Diff line number Diff line
{
  "deno": {
    "enable": true
  },
  "ensure_final_newline_on_save": true,
  "format_on_save": "on",
  "formatter": "language_server",
  "languages": {
    "TypeScript": {
      "language_servers": [
        "deno",
        "!typescript-language-server",
        "!vtsls",
        "!eslint",
        "..."
      ]
    },
    "TSX": {
      "language_servers": [
        "deno",
        "!typescript-language-server",
        "!vtsls",
        "!eslint",
        "..."
      ]
    }
  },
  "show_wrap_guides": true,
  "wrap_guides": [80]
}

LICENSE

0 → 100644
+20 −0
Original line number Diff line number Diff line
MIT License

Copyright 2024 Hong Minhee

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

deno.json

0 → 100644
+16 −0
Original line number Diff line number Diff line
{
  "name": "@fedify/redis",
  "exports": {
    ".": "./mod.ts",
    "./codec": "./src/codec.ts",
    "./kv": "./src/kv.ts"
  },
  "imports": {
    "@fedify/fedify": "jsr:@fedify/fedify@^0.10.0",
    "@std/assert": "jsr:@std/assert@^0.226.0",
    "ioredis": "npm:ioredis@^5.4.0"
  },
  "tasks": {
    "test": "deno test --allow-net --allow-env"
  }
}