Unverified Commit f7d7f5fc authored by Hong Minhee (洪 民憙)'s avatar Hong Minhee (洪 民憙) Committed by GitHub
Browse files

Merge pull request #389 from 2chanhaeng/main

parents 4473b149 bd7c8a25
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -4,6 +4,8 @@
    "activitypub",
    "activitystreams",
    "aitertools",
    "amqp",
    "amqplib",
    "apidoc",
    "authdocloader",
    "bccs",
@@ -89,6 +91,8 @@
    "subproperty",
    "superproperty",
    "supertypes",
    "sveltejs",
    "sveltekit",
    "tempserver",
    "traceparent",
    "ts-nocheck",
+23 −0
Original line number Diff line number Diff line
node_modules

# Output
.output
.vercel
.netlify
.wrangler
/.svelte-kit
/build

# OS
.DS_Store
Thumbs.db

# Env
.env
.env.*
!.env.example
!.env.test

# Vite
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
+1 −0
Original line number Diff line number Diff line
engine-strict=true
+9 −0
Original line number Diff line number Diff line
# Package Managers
package-lock.json
pnpm-lock.yaml
yarn.lock
bun.lock
bun.lockb

# Miscellaneous
/static/
+13 −0
Original line number Diff line number Diff line
{
  "printWidth": 80,
  "plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
  "overrides": [
    {
      "files": "*.svelte",
      "options": {
        "parser": "svelte"
      }
    }
  ],
  "tailwindStylesheet": "./src/app.css"
}
Loading