diff options
| author | 2026-03-26 08:50:26 +0800 | |
|---|---|---|
| committer | 2026-03-26 08:50:26 +0800 | |
| commit | 7d0e92e6d3b172adfe552ffae9b97f8dad6f63ae (patch) | |
| tree | f54ab2bf4867eb69a6e7db890c882f9ea080a324 /.changes | |
| parent | e356ab996ad3ef4ad5fb9c90d4a4b4e61ff3342d (diff) | |
| parent | 41589eac819da64e832539df3e1c7117a6393ad0 (diff) | |
| download | DropOut-7d0e92e6d3b172adfe552ffae9b97f8dad6f63ae.tar.gz DropOut-7d0e92e6d3b172adfe552ffae9b97f8dad6f63ae.zip | |
chore(lint): partial apply docs code lints (#123)
cc @NtskwK ptal, and, some codes cannot pass the code lint, check plz.
## Summary by Sourcery
Apply linting and formatting updates across the docs app, and align
tooling and release config for the @dropout/docs package.
Enhancements:
- Normalize imports, string literals, and JSX formatting across the docs
app for consistent style and lint compliance.
- Tidy i18n, routing, and docs loader code without changing behavior,
improving readability and maintainability.
Build:
- Register the @dropout/docs package in the release/config system with
nodejs resolver and alpha pre-release tagging.
- Update docs-related Vite and TypeScript config files to match the new
linting and path conventions.
- Remove the nodejs publish command block from the shared changes config
to simplify release behavior.
Chores:
- Bump @biomejs/biome to the latest version and add core-js to
onlyBuiltDependencies for tooling compatibility.
- Add a changeset for @dropout/docs describing the docs linting patch
release.
- Introduce or update Biome and docs content metadata config files to
support the new linting setup.
Diffstat (limited to '.changes')
| -rw-r--r-- | .changes/config.toml | 14 | ||||
| -rw-r--r-- | .changes/docs-lint.md | 5 |
2 files changed, 10 insertions, 9 deletions
diff --git a/.changes/config.toml b/.changes/config.toml index 051bf85..2677ed9 100644 --- a/.changes/config.toml +++ b/.changes/config.toml @@ -14,6 +14,11 @@ path = "packages/ui" resolver = "nodejs" version-mode = { pre-release.tag = "alpha" } +[packages."@dropout/docs"] +path = "packages/docs" +resolver = "nodejs" +version-mode = { pre-release.tag = "alpha" } + [packages.dropout] path = "src-tauri" resolver = "rust" @@ -41,12 +46,3 @@ args = ["bump-tauri"] [resolver.nodejs.pre-check] url = "https://registry.npmjs.org/{{ package.name }}/{{ package.version }}" - -[[resolver.nodejs.publish]] -command = "npm" -args = [ - "publish", - "--provenance", - "--access", - "public", -] diff --git a/.changes/docs-lint.md b/.changes/docs-lint.md new file mode 100644 index 0000000..ac98c71 --- /dev/null +++ b/.changes/docs-lint.md @@ -0,0 +1,5 @@ +--- +"@dropout/docs": "patch:chore" +--- + +Partially apply docs frontend lint fixes |