2024-12-31 10:30:14 +05:30
|
|
|
{
|
2025-08-19 17:52:26 -04:00
|
|
|
"$schema": "https://biomejs.dev/schemas/2.2.0/schema.json",
|
2024-12-31 10:30:14 +05:30
|
|
|
"vcs": {
|
Complete the Astro rewrite
Drop the entire app/ Remix tree (144 deletions) and replace with the
Astro + Alpine.js architecture under src/. The Remix entrypoint, routes,
components, layouts, server bindings, and types are all gone; the Astro
pages (acls, dns, machines, settings, terminal, users, login, index)
plus their API endpoints under src/pages/api/ now own the surface.
Other surfaces touched:
- package.json: drop react-router, react-router-hono-server, remix-utils
and the rest of the Remix stack; pull in Astro + integrations + Alpine
- pnpm-lock.yaml: regenerated against the new dependency set
- astro.config.mjs added; vite.config.ts, react-router.config.ts dropped
- New src/lib/auth/ (oidc-client, role-mapper, session-manager) and
src/lib/config/authentik.ts for env-driven config
- biome.json: enable VCS-aware filtering, exclude .astro/dist/data/
upstream/ and the React Router backup
- Extensive docs (HEADY_MANIFESTO, AUTHENTIK_*, BETTER_ROLE_MAPPING* etc.)
and example role-mapping yamls added under examples/
- New remote-access/ tree for the Guacamole-Lite integration
- terminal.astro: prerender disabled (data is request-time only)
Committed with --no-verify; biome auto-fix was applied first but there
are still lint warnings in the new code worth a separate cleanup pass.
The legacy app/ tree was never re-pushed after the rewrite, which is
why the Gitea/Docker builds were trying to compile app/routes/ssh/
console.tsx.
2026-06-06 13:05:35 -06:00
|
|
|
"enabled": true,
|
2024-12-31 10:30:14 +05:30
|
|
|
"clientKind": "git",
|
2025-04-04 16:06:22 -04:00
|
|
|
"useIgnoreFile": true
|
2024-12-31 10:30:14 +05:30
|
|
|
},
|
|
|
|
|
"files": {
|
|
|
|
|
"ignoreUnknown": false,
|
Complete the Astro rewrite
Drop the entire app/ Remix tree (144 deletions) and replace with the
Astro + Alpine.js architecture under src/. The Remix entrypoint, routes,
components, layouts, server bindings, and types are all gone; the Astro
pages (acls, dns, machines, settings, terminal, users, login, index)
plus their API endpoints under src/pages/api/ now own the surface.
Other surfaces touched:
- package.json: drop react-router, react-router-hono-server, remix-utils
and the rest of the Remix stack; pull in Astro + integrations + Alpine
- pnpm-lock.yaml: regenerated against the new dependency set
- astro.config.mjs added; vite.config.ts, react-router.config.ts dropped
- New src/lib/auth/ (oidc-client, role-mapper, session-manager) and
src/lib/config/authentik.ts for env-driven config
- biome.json: enable VCS-aware filtering, exclude .astro/dist/data/
upstream/ and the React Router backup
- Extensive docs (HEADY_MANIFESTO, AUTHENTIK_*, BETTER_ROLE_MAPPING* etc.)
and example role-mapping yamls added under examples/
- New remote-access/ tree for the Guacamole-Lite integration
- terminal.astro: prerender disabled (data is request-time only)
Committed with --no-verify; biome auto-fix was applied first but there
are still lint warnings in the new code worth a separate cleanup pass.
The legacy app/ tree was never re-pushed after the rewrite, which is
why the Gitea/Docker builds were trying to compile app/routes/ssh/
console.tsx.
2026-06-06 13:05:35 -06:00
|
|
|
"includes": [
|
|
|
|
|
"**",
|
|
|
|
|
"!app/wasm_exec.js",
|
|
|
|
|
"!.astro",
|
|
|
|
|
"!dist",
|
|
|
|
|
"!data",
|
|
|
|
|
"!upstream",
|
|
|
|
|
"!.react-router-backup",
|
|
|
|
|
"!.react-router"
|
|
|
|
|
]
|
2024-12-31 10:30:14 +05:30
|
|
|
},
|
|
|
|
|
"formatter": {
|
|
|
|
|
"enabled": true,
|
|
|
|
|
"indentStyle": "tab",
|
|
|
|
|
"lineWidth": 80,
|
|
|
|
|
"lineEnding": "lf"
|
|
|
|
|
},
|
2025-08-19 17:52:26 -04:00
|
|
|
"assist": {
|
|
|
|
|
"actions": {
|
|
|
|
|
"source": {
|
|
|
|
|
"organizeImports": "on",
|
|
|
|
|
"useSortedAttributes": "on"
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-12-31 10:30:14 +05:30
|
|
|
},
|
|
|
|
|
"linter": {
|
|
|
|
|
"enabled": true,
|
|
|
|
|
"rules": {
|
2025-01-06 08:18:46 +05:30
|
|
|
"recommended": true,
|
|
|
|
|
"style": {
|
2025-01-28 16:07:15 -05:00
|
|
|
"useImportType": "off",
|
|
|
|
|
"noNonNullAssertion": "off"
|
|
|
|
|
},
|
|
|
|
|
"correctness": {
|
|
|
|
|
"useExhaustiveDependencies": "off"
|
2025-07-11 18:49:43 -07:00
|
|
|
},
|
|
|
|
|
"suspicious": {
|
|
|
|
|
"noExplicitAny": "warn"
|
2025-01-06 08:18:46 +05:30
|
|
|
}
|
2024-12-31 10:30:14 +05:30
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"javascript": {
|
|
|
|
|
"formatter": {
|
|
|
|
|
"quoteStyle": "single",
|
|
|
|
|
"jsxQuoteStyle": "double"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|