chore: Enable formatting of files other than src and test.

This commit is contained in:
cpojer
2026-01-31 21:10:41 +09:00
parent 1287328b6f
commit dcc2de15a6
2 changed files with 15 additions and 4 deletions

View File

@@ -115,10 +115,10 @@
"lint:swift": "swiftlint lint --config .swiftlint.yml && (cd apps/ios && swiftlint lint --config .swiftlint.yml)",
"lint:all": "pnpm lint && pnpm lint:swift",
"lint:fix": "pnpm format:fix && oxlint --type-aware --fix src test",
"format": "oxfmt --check src test",
"format": "oxfmt --check",
"format:swift": "swiftformat --lint --config .swiftformat apps/macos/Sources apps/ios/Sources apps/shared/OpenClawKit/Sources",
"format:all": "pnpm format && pnpm format:swift",
"format:fix": "oxfmt --write src test",
"format:fix": "oxfmt --write",
"test": "node scripts/test-parallel.mjs",
"test:watch": "vitest",
"test:ui": "pnpm --dir ui test",