Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

- uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6
with:
node-version: 24
node-version: 25

- run: corepack enable

Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:

- uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6
with:
node-version: 24
node-version: 25

- run: corepack enable

Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:

- uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6
with:
node-version: 24
node-version: 25

- run: corepack enable

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:24-alpine as base
FROM node:25-alpine as base

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.0.5/schema.json",
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
Expand Down
50 changes: 0 additions & 50 deletions eslint.config.js

This file was deleted.

62 changes: 62 additions & 0 deletions eslint.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
import antfu from "@antfu/eslint-config"

export default antfu({
ignores: ["**/*.json"],
markdown: false,
stylistic: false,
jsonc: false,
jsx: false,
pnpm: false,
toml: false,
test: { overrides: { "test/no-import-node-test": "off" } },
typescript: {
tsconfigPath: "tsconfig.json",
ignoresTypeAware: ["copy.ts", "*.config.*"],

overridesTypeAware: {
"ts/no-floating-promises": [
"error",
{
allowForKnownSafeCalls: [
{ from: "package", package: "node:test", name: ["describe", "it", "test"] },
],
},
],
},

overrides: {
"no-console": "off",
"antfu/no-top-level-await": "off",
"import/consistent-type-specifier-style": ["error", "prefer-top-level"],
"node/prefer-global/process": "off",
"ts/consistent-type-definitions": "off",
"ts/consistent-type-imports": [
"error",
{ fixStyle: "inline-type-imports", disallowTypeAnnotations: false },
],
"ts/no-unsafe-argument": "off",
"ts/no-unsafe-assignment": "off",
"ts/no-use-before-define": "off",
"unused-imports/no-unused-vars": "off",

"perfectionist/sort-imports": [
"error",
{
type: "natural",
internalPattern: ["^@/", "^~/", "^#[a-zA-Z0-9-]+/"],
newlinesBetween: "always",
groups: [
["builtin", "builtin-type"],
["external", "external-type"],
["internal", "internal-type"],
["parent", "parent-type"],
["sibling", "sibling-type"],
["index", "index-type"],
"object",
"unknown",
],
},
],
},
},
})
2 changes: 1 addition & 1 deletion mise.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[tools]
node = "24"
node = "25"
38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"private": true,
"license": "AGPL-3.0-only",
"homepage": "https://arm.haglund.dev/docs",
"packageManager": "pnpm@10.18.1",
"packageManager": "pnpm@10.26.2",
"engines": {
"node": "^24"
"node": "^25"
},
"simple-git-hooks": {
"pre-commit": "node_modules/.bin/nano-staged"
Expand All @@ -34,28 +34,28 @@
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "5.4.1",
"@biomejs/biome": "2.2.5",
"@tsconfig/node24": "24.0.1",
"@tsconfig/strictest": "2.0.6",
"@antfu/eslint-config": "6.7.3",
"@biomejs/biome": "2.3.10",
"@tsconfig/node24": "24.0.3",
"@tsconfig/strictest": "2.0.8",
"@types/json-schema": "7.0.15",
"@types/node": "24.7.0",
"@typescript/native-preview": "7.0.0-dev.20251008.1",
"@vitest/coverage-v8": "4.0.0-beta.17",
"@types/node": "25.0.3",
"@typescript/native-preview": "7.0.0-dev.20251230.1",
"@vitest/coverage-v8": "4.0.16",
"db0": "0.3.4",
"eslint": "9.37.0",
"h3": "2.0.1-rc.2",
"kysely": "0.28.7",
"eslint": "9.39.2",
"h3": "2.0.1-rc.6",
"kysely": "0.28.9",
"kysely-db0": "0.1.0-beta.0",
"mentoss": "0.11.0",
"mentoss": "0.12.0",
"nano-staged": "0.8.0",
"onchange": "7.1.0",
"pino": "10.0.0",
"pino-pretty": "13.1.1",
"pino": "10.1.0",
"pino-pretty": "13.1.3",
"simple-git-hooks": "2.13.1",
"tsdown": "0.15.6",
"valibot": "1.1.0",
"vitest": "4.0.0-beta.17",
"xior": "0.7.8"
"tsdown": "0.18.3",
"valibot": "1.2.0",
"vitest": "4.0.16",
"xior": "0.8.2"
}
}
Loading
Loading