build: pin explicit oxfmt defaults

This commit is contained in:
Peter Steinberger
2026-05-11 02:27:30 +01:00
parent 6f09348931
commit df98964c0f
2 changed files with 17 additions and 0 deletions

View File

@@ -1,5 +1,20 @@
{ {
"$schema": "./node_modules/oxfmt/configuration_schema.json", "$schema": "./node_modules/oxfmt/configuration_schema.json",
"arrowParens": "always",
"bracketSameLine": false,
"bracketSpacing": true,
"embeddedLanguageFormatting": "auto",
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"insertFinalNewline": true,
"jsxSingleQuote": false,
"objectWrap": "preserve",
"printWidth": 100,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"semi": true,
"singleAttributePerLine": false,
"singleQuote": false,
"sortImports": { "sortImports": {
"newlinesBetween": false, "newlinesBetween": false,
}, },
@@ -7,6 +22,7 @@
"sortScripts": true, "sortScripts": true,
}, },
"tabWidth": 2, "tabWidth": 2,
"trailingComma": "all",
"useTabs": false, "useTabs": false,
"ignorePatterns": [ "ignorePatterns": [
"apps/", "apps/",

View File

@@ -6,6 +6,7 @@ Docs: https://docs.openclaw.ai
### Changes ### Changes
- Build: pin explicit oxfmt defaults in the shared formatter config to keep formatting behavior stable across upgrades.
- TypeScript: enable stricter compiler checks for implicit returns, side-effect imports, overrides, and unused production code. - TypeScript: enable stricter compiler checks for implicit returns, side-effect imports, overrides, and unused production code.
- Build: upgrade workspace package management to pnpm 11 and keep Docker, install, update, and release workflows on the pnpm 11 config surface. (#79414) Thanks @altaywtf. - Build: upgrade workspace package management to pnpm 11 and keep Docker, install, update, and release workflows on the pnpm 11 config surface. (#79414) Thanks @altaywtf.
- Models: add provider-level `localService` startup for on-demand local model servers before OpenAI-compatible requests, including one-shot model probes. - Models: add provider-level `localService` startup for on-demand local model servers before OpenAI-compatible requests, including one-shot model probes.