mirror of
https://github.com/djdevin/recflare.git
synced 2026-09-08 06:31:27 -07:00
Initial commit
This commit is contained in:
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
{
|
||||
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
|
||||
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
|
||||
|
||||
// List of extensions which should be recommended for users of this workspace.
|
||||
"recommendations": ["esbenp.prettier-vscode", "oxc.oxc-vscode"],
|
||||
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
|
||||
"unwantedRecommendations": []
|
||||
}
|
||||
Vendored
+62
@@ -0,0 +1,62 @@
|
||||
{
|
||||
"explorer.fileNesting.enabled": true,
|
||||
"explorer.fileNesting.patterns": {
|
||||
"*.ts": "$(capture).js, $(capture).d.ts",
|
||||
"*.js": "$(capture).js.map, $(capture).min.js, $(capture).d.ts",
|
||||
"*.jsx": "$(capture).js",
|
||||
"*.tsx": "$(capture).ts",
|
||||
"tsconfig.json": "tsconfig.*.json",
|
||||
"package.json": ".*, *.config.ts, CLAUDE.md, AGENTS.md, bun.lock, docker-compose.yml, docker-compose.yaml, dagger.json, env.d.ts, postcss.config.ts, vitest.config.*.ts, Dockerfile, railway.json, vitest.config.*.ts, uuid-rocks.code-workspace, astro.config.ts, ndstories.code-workspace, wrangler.jsonc, workflows.code-workspace, astroblog.code-workspace, astro.config.mjs, drizzle.config.ts, Earthfile, workers.code-workspace, Justfile, CHANGELOG.md, vitest.config.ts, vitest.workspace.ts, postcss.config.mjs, vite.config.ts, worker-configuration.d.ts, README.md, package-lock.json, yarn.lock, postcss.config.js, remix.config.js, remix.env.d.ts, tailwind.config.js, tsconfig.json, server.ts, tailwind.config.ts, turbo.jsonc, LICENSE, pnpm-lock.yaml, pnpm-workspace.yaml"
|
||||
},
|
||||
"editor.detectIndentation": true,
|
||||
|
||||
// https://arktype.io/docs/intro/setup#settings
|
||||
// allow autocomplete for ArkType expressions like "string | num"
|
||||
"editor.quickSuggestions": {
|
||||
"strings": "on"
|
||||
},
|
||||
// prioritize ArkType's "type" for autoimports
|
||||
"typescript.preferences.autoImportSpecifierExcludeRegexes": ["^(node:)?os$"],
|
||||
"typescript.preferences.autoImportFileExcludePatterns": ["**/vitest/dist/**"],
|
||||
"typescript.preferences.importModuleSpecifier": "non-relative",
|
||||
|
||||
// I always prefer format on save
|
||||
"editor.formatOnSave": true,
|
||||
|
||||
"github-actions.workflows.pinned.workflows": [
|
||||
".github/workflows/release.yml",
|
||||
".github/workflows/branches.yml"
|
||||
],
|
||||
"github-actions.workflows.pinned.refresh.enabled": true,
|
||||
"github-actions.workflows.pinned.refresh.interval": 30,
|
||||
|
||||
"files.associations": {
|
||||
"**/packages/tools/bin/*": "shellscript",
|
||||
"**/*.css": "tailwindcss",
|
||||
"turbo.json": "jsonc",
|
||||
"**/packages/typescript-config/*.json": "jsonc",
|
||||
"*.mdc": "markdown"
|
||||
},
|
||||
"cSpell.words": [
|
||||
"cftrace",
|
||||
"cloudflareaccess",
|
||||
"codemod",
|
||||
"Hono",
|
||||
"itty",
|
||||
"jachands",
|
||||
"luxon",
|
||||
"miniflare",
|
||||
"opentelemetry",
|
||||
"otel",
|
||||
"pnpx",
|
||||
"runx",
|
||||
"syncpack",
|
||||
"typecheck",
|
||||
"addrs",
|
||||
"devlist",
|
||||
"gitea",
|
||||
"logtail",
|
||||
"miniflare",
|
||||
"tldraw"
|
||||
]
|
||||
}
|
||||
Vendored
+19
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"type": "npm",
|
||||
"script": "changeset:new",
|
||||
"group": "none",
|
||||
"label": "changeset: new",
|
||||
"detail": "Create changeset and commit all changes",
|
||||
"runOptions": { "instanceLimit": 1 },
|
||||
"presentation": {
|
||||
"reveal": "always",
|
||||
"focus": true,
|
||||
"panel": "new",
|
||||
"close": true
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user