Skip to content
Open
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
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,13 @@ jobs:
node-version: 24
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm agent:check
- name: "Guard: agent step not yet completed for this PR"
run: test ! -f .standards/pending.json
- run: pnpm run --if-present lint
- run: pnpm run --if-present format:check
- run: pnpm run --if-present typecheck
- run: pnpm run --if-present build
- run: pnpm run --if-present test
# minimum-release-age=0 mirrors the standards apply invocation: pnpm 11
# otherwise holds back very fresh standards releases and can report false drift.
- run: pnpm --config.minimum-release-age=0 dlx @sebastian-software/standards check
6 changes: 0 additions & 6 deletions .oxfmtignore

This file was deleted.

2 changes: 1 addition & 1 deletion .oxfmtrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"$schema": "./node_modules/oxfmt/configuration_schema.json",
"ignorePatterns": []
"ignorePatterns": ["dist", "**/dist", "coverage", "pnpm-lock.yaml", "CHANGELOG.md", ".standards/"]
}
5 changes: 3 additions & 2 deletions .repometa.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"standards": 1,
"standards": 6,
"visibility": "oss",
"since": 2026
"since": 2026,
"platform": "github"
}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
"lint": "pnpm lint:oxlint && pnpm lint:eslint",
"lint:eslint": "eslint . --max-warnings=0",
"lint:oxlint": "oxlint -c oxlint.config.ts",
"format": "oxfmt --ignore-path .oxfmtignore --write .",
"format:check": "oxfmt --ignore-path .oxfmtignore --check .",
"check:standards": "standards check",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"check:standards": "pnpm --config.minimum-release-age=0 dlx @sebastian-software/standards check",
"agent:check": "pnpm lint && pnpm format:check && pnpm typecheck && pnpm build && pnpm test && pnpm check:standards"
},
"devDependencies": {
Expand Down
2 changes: 2 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,6 @@ allowBuilds:
esbuild: true
unrs-resolver: true
minimumReleaseAgeExclude:
- "@sebastian-gmbh/*"
- "@sebastian-software/*"
- "@sebastian-software/standards@0.2.0"
Loading