@akanjs/devkit 3.0.0-alpha.8 → 3.0.0-alpha.80

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (174) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/README.ko.md +1 -1
  3. package/README.md +1 -1
  4. package/agentsIndex.test.ts +10 -0
  5. package/agentsIndex.ts +47 -1
  6. package/aiEditor.ts +1 -1
  7. package/akanApp/BackendImportGraph.test.ts +120 -0
  8. package/akanApp/BackendImportGraph.ts +167 -0
  9. package/akanApp/akanApp.host.test.ts +16 -678
  10. package/akanApp/akanApp.host.ts +65 -562
  11. package/akanApp/devHostPolicy.test.ts +542 -0
  12. package/akanApp/devHostPolicy.ts +412 -0
  13. package/akanApp/index.ts +2 -0
  14. package/akanConfig/akanConfig.test.ts +182 -14
  15. package/akanConfig/akanConfig.ts +132 -47
  16. package/akanConfig/types.ts +8 -0
  17. package/akanContext.ts +70 -14
  18. package/akanMcpContract.ts +25 -4
  19. package/applicationBuildRunner.test.ts +1 -1
  20. package/applicationBuildRunner.ts +45 -21
  21. package/artifact/implicitRootLayout.test.ts +67 -0
  22. package/artifact/implicitRootLayout.ts +27 -7
  23. package/artifact/routeSeedIndex.test.ts +1 -0
  24. package/biome.base.json +340 -0
  25. package/biomeBase.ts +9 -0
  26. package/capacitorApp.ts +10 -0
  27. package/cloud/globalConfig.ts +9 -2
  28. package/commandDecorators/command.ts +30 -6
  29. package/commandDecorators/commandBuilder.ts +20 -5
  30. package/commandDecorators/commandDecorators.test.ts +115 -3
  31. package/dependencyScanner.test.ts +99 -0
  32. package/dependencyScanner.ts +27 -24
  33. package/devkitUtils.test.ts +0 -104
  34. package/executors.test.ts +132 -5
  35. package/executors.ts +89 -14
  36. package/fileEditor.ts +19 -19
  37. package/fleetConfig.ts +73 -0
  38. package/fleetGuard.test.ts +121 -0
  39. package/fleetGuard.ts +157 -0
  40. package/fleetSpoke.test.ts +390 -0
  41. package/fleetSpoke.ts +719 -0
  42. package/formSetterScanner.test.ts +80 -0
  43. package/formSetterScanner.ts +92 -0
  44. package/frontendBuild/autoImportSync.test.ts +58 -0
  45. package/frontendBuild/autoImportSync.ts +4 -0
  46. package/frontendBuild/buildRouteClient.test.ts +47 -24
  47. package/frontendBuild/clientBuildTypes.ts +4 -0
  48. package/frontendBuild/clientEntriesBundler.ts +4 -1
  49. package/frontendBuild/clientEntryDiscovery.ts +2 -2
  50. package/frontendBuild/csrArtifactBuilder.ts +116 -84
  51. package/frontendBuild/cssCompiler.ts +123 -12
  52. package/frontendBuild/cssImportResolver.ts +8 -7
  53. package/frontendBuild/fontOptimizer.ts +37 -18
  54. package/frontendBuild/fontPruner.test.ts +220 -0
  55. package/frontendBuild/fontPruner.ts +206 -0
  56. package/frontendBuild/frontendBuild.test.ts +178 -10
  57. package/frontendBuild/hmrWatcher.ts +1 -1
  58. package/frontendBuild/index.ts +1 -1
  59. package/frontendBuild/pagesBundleBuilder.ts +3 -3
  60. package/frontendBuild/pagesEntrySourceGenerator.ts +11 -88
  61. package/frontendBuild/routeClientBuilder.ts +12 -5
  62. package/frontendBuild/ssrBaseArtifactBuilder.ts +21 -4
  63. package/frontendBuild/styleContract.ts +14 -20
  64. package/frontendBuild/themeValidator.ts +22 -17
  65. package/frontendBuild/vendorSpecifiers.ts +1 -0
  66. package/incrementalBuilder/devWatchBatch.test.ts +18 -20
  67. package/incrementalBuilder/devWatchBatch.ts +6 -2
  68. package/incrementalBuilder/incrementalBuilder.host.ts +1 -1
  69. package/incrementalBuilder/incrementalBuilder.proc.ts +8 -4
  70. package/index.ts +0 -5
  71. package/integration/devStabilityHarness.ts +2 -10
  72. package/libSource.test.ts +109 -0
  73. package/libSource.ts +126 -0
  74. package/lint/__fixtures__/README.md +40 -0
  75. package/lint/__fixtures__/no-arbitrary-color/bad.tsx +3 -0
  76. package/lint/__fixtures__/no-arbitrary-color/good.tsx +4 -0
  77. package/lint/__fixtures__/no-async-component-in-ui/bad.tsx +4 -0
  78. package/lint/__fixtures__/no-async-component-in-ui/good.tsx +4 -0
  79. package/lint/__fixtures__/no-bang-comment-in-client/bad.tsx +4 -0
  80. package/lint/__fixtures__/no-bang-comment-in-client/fixture.json +1 -0
  81. package/lint/__fixtures__/no-bang-comment-in-client/good.tsx +3 -0
  82. package/lint/__fixtures__/no-daisyui-legacy-class/bad.tsx +7 -0
  83. package/lint/__fixtures__/no-daisyui-legacy-class/good.tsx +5 -0
  84. package/lint/__fixtures__/no-deep-internal-import/bad.tsx +3 -0
  85. package/lint/__fixtures__/no-deep-internal-import/fixture.json +1 -0
  86. package/lint/__fixtures__/no-deep-internal-import/good.tsx +3 -0
  87. package/lint/__fixtures__/no-deprecated-log-level/bad.tsx +4 -0
  88. package/lint/__fixtures__/no-deprecated-log-level/good.tsx +4 -0
  89. package/lint/__fixtures__/no-import-client-functions/bad.tsx +2 -0
  90. package/lint/__fixtures__/no-import-client-functions/good.tsx +4 -0
  91. package/lint/__fixtures__/no-import-client-in-server/bad.tsx +6 -0
  92. package/lint/__fixtures__/no-import-client-in-server/good.tsx +5 -0
  93. package/lint/__fixtures__/no-import-external-library/bad.tsx +4 -0
  94. package/lint/__fixtures__/no-import-external-library/good.tsx +5 -0
  95. package/lint/__fixtures__/no-import-server-in-client/bad.tsx +6 -0
  96. package/lint/__fixtures__/no-import-server-in-client/good.tsx +4 -0
  97. package/lint/__fixtures__/no-init-fetch-in-client/store-file/bad.ts +1 -0
  98. package/lint/__fixtures__/no-init-fetch-in-client/store-file/fixture.json +1 -0
  99. package/lint/__fixtures__/no-init-fetch-in-client/store-file/good.ts +1 -0
  100. package/lint/__fixtures__/no-init-fetch-in-client/use-client/bad.tsx +4 -0
  101. package/lint/__fixtures__/no-init-fetch-in-client/use-client/good.tsx +5 -0
  102. package/lint/__fixtures__/no-inline-color/bad.tsx +3 -0
  103. package/lint/__fixtures__/no-inline-color/good.tsx +3 -0
  104. package/lint/__fixtures__/no-interpolated-arbitrary-class/bad.tsx +3 -0
  105. package/lint/__fixtures__/no-interpolated-arbitrary-class/good.tsx +3 -0
  106. package/lint/__fixtures__/no-js-private-class-method/bad.tsx +3 -0
  107. package/lint/__fixtures__/no-js-private-class-method/good.tsx +3 -0
  108. package/lint/__fixtures__/no-model-type-in-util-zone/bad.tsx +3 -0
  109. package/lint/__fixtures__/no-model-type-in-util-zone/good.tsx +6 -0
  110. package/lint/__fixtures__/no-raw-palette-class/bad.tsx +6 -0
  111. package/lint/__fixtures__/no-raw-palette-class/good.tsx +8 -0
  112. package/lint/__fixtures__/no-redeclare-predefined-endpoint/bad.ts +10 -0
  113. package/lint/__fixtures__/no-redeclare-predefined-endpoint/fixture.json +1 -0
  114. package/lint/__fixtures__/no-redeclare-predefined-endpoint/good.ts +6 -0
  115. package/lint/__fixtures__/no-return-in-store-action/bad.tsx +2 -0
  116. package/lint/__fixtures__/no-return-in-store-action/good.tsx +6 -0
  117. package/lint/__fixtures__/no-throw-raw-error/bad.tsx +4 -0
  118. package/lint/__fixtures__/no-throw-raw-error/good.tsx +4 -0
  119. package/lint/__fixtures__/no-unpublished-form-setter/bad.tsx +3 -0
  120. package/lint/__fixtures__/no-unpublished-form-setter/good.tsx +5 -0
  121. package/lint/__fixtures__/no-use-client-in-server/bad.tsx +3 -0
  122. package/lint/__fixtures__/no-use-client-in-server/good.tsx +2 -0
  123. package/lint/__fixtures__/non-scalar-props-restricted/bad.tsx +5 -0
  124. package/lint/__fixtures__/non-scalar-props-restricted/good.tsx +4 -0
  125. package/lint/gritRules.test.ts +178 -0
  126. package/lint/no-arbitrary-color.grit +1 -1
  127. package/lint/no-async-component-in-ui.grit +35 -0
  128. package/lint/no-bang-comment-in-client.grit +23 -10
  129. package/lint/no-daisyui-legacy-class.grit +26 -9
  130. package/lint/no-deprecated-log-level.grit +17 -0
  131. package/lint/no-import-client-in-server.grit +48 -0
  132. package/lint/no-import-server-in-client.grit +45 -0
  133. package/lint/no-init-fetch-in-client.grit +47 -0
  134. package/lint/no-inline-color.grit +10 -8
  135. package/lint/no-interpolated-arbitrary-class.grit +3 -3
  136. package/lint/no-model-type-in-util-zone.grit +58 -0
  137. package/lint/no-raw-palette-class.grit +3 -3
  138. package/lint/no-unpublished-form-setter.grit +41 -0
  139. package/lint/non-scalar-props-restricted.grit +16 -7
  140. package/linter.test.ts +80 -0
  141. package/linter.ts +99 -25
  142. package/package.json +6 -6
  143. package/prompter.ts +9 -4
  144. package/qualityScanner.test.ts +116 -0
  145. package/qualityScanner.ts +89 -21
  146. package/recipeScanner.ts +4 -1
  147. package/repoIdentity.ts +42 -0
  148. package/scanInfo.ts +32 -26
  149. package/semver.test.ts +26 -0
  150. package/semver.ts +31 -0
  151. package/slicePlanner.test.ts +151 -0
  152. package/slicePlanner.ts +157 -0
  153. package/ssrScanner.test.ts +301 -0
  154. package/transforms/asyncDefaultExportDetector.ts +103 -0
  155. package/transforms/barrelImportsPlugin.ts +1 -1
  156. package/transforms/externalizeFrameworkPlugin.ts +0 -1
  157. package/transforms/transforms.test.ts +5 -5
  158. package/transforms/tsconfigPackageResolver.test.ts +230 -0
  159. package/tsconfig.json +6 -2
  160. package/typeChecker.ts +1 -1
  161. package/types.ts +1 -0
  162. package/ui/ScrollList.tsx +6 -8
  163. package/uploadRelease.ts +2 -2
  164. package/workflow/executor.test.ts +146 -0
  165. package/workspaceLayout.test.ts +56 -4
  166. package/workspaceLayout.ts +49 -4
  167. package/builder.ts +0 -164
  168. package/extractDeps.ts +0 -86
  169. package/frontendBuild/styleGuard.test.ts +0 -165
  170. package/frontendBuild/styleGuard.ts +0 -322
  171. package/getCredentials.ts +0 -19
  172. package/getModelFileData.ts +0 -62
  173. package/src/capacitorApp.ts +0 -282
  174. package/streamAi.ts +0 -45
@@ -0,0 +1,109 @@
1
+ import { afterEach, describe, expect, test } from "bun:test";
2
+ import { mkdir, mkdtemp, rm, writeFile } from "node:fs/promises";
3
+ import os from "node:os";
4
+ import path from "node:path";
5
+ import { Executor, LibExecutor, WorkspaceExecutor } from "./executors";
6
+ import { formatLibStatuses, LibSource } from "./libSource";
7
+
8
+ const tempRoots: string[] = [];
9
+
10
+ afterEach(async () => {
11
+ await Promise.all(tempRoots.splice(0).map((root) => rm(root, { recursive: true, force: true })));
12
+ });
13
+
14
+ const write = async (filePath: string, content: string) => {
15
+ await mkdir(path.dirname(filePath), { recursive: true });
16
+ await writeFile(filePath, content);
17
+ };
18
+
19
+ // `LibExecutor.from` memoises by name, so each fixture needs a name no other test has used.
20
+ const makeLib = async (libName: string) => {
21
+ const root = await mkdtemp(path.join(os.tmpdir(), "akan-libsource-"));
22
+ tempRoots.push(root);
23
+ await write(path.join(root, "package.json"), '{ "name": "hub", "version": "0.0.1", "description": "hub" }\n');
24
+ await write(path.join(root, ".gitignore"), "node_modules\n");
25
+ await write(path.join(root, `libs/${libName}/package.json`), `{ "name": "@${libName}", "version": "0.0.1" }\n`);
26
+ await write(path.join(root, `libs/${libName}/common/helper.ts`), "export const helper = 1;\n");
27
+ await write(path.join(root, `libs/${libName}/env/env.server.testing.ts`), "export const env = { key: 1 };\n");
28
+
29
+ const git = new Executor("fixture", root);
30
+ await git.spawn("git", ["init", "--quiet"]);
31
+
32
+ const workspace = WorkspaceExecutor.fromRoot({ workspaceRoot: root, repoName: `hub-${libName}` });
33
+ const lib = LibExecutor.from(workspace, libName);
34
+ return { root, lib, source: new LibSource(lib) };
35
+ };
36
+
37
+ describe("LibSource", () => {
38
+ test("reports an unstamped library", async () => {
39
+ const { source } = await makeLib("plain-lib");
40
+ const status = await source.status();
41
+
42
+ expect(status.drift).toBe("unstamped");
43
+ expect(status.stamp).toBeNull();
44
+ expect(status.hash).toMatch(/^[0-9a-f]{32}$/);
45
+ });
46
+
47
+ test("stamps the origin into package.json and reads back clean", async () => {
48
+ const { lib, source } = await makeLib("stamped-lib");
49
+ const stamp = await source.write({ origin: "akanjs", sha: "3.0.0" });
50
+
51
+ expect(stamp.origin).toBe("akanjs");
52
+ expect(await source.read()).toEqual(stamp);
53
+ expect((await source.status()).drift).toBe("clean");
54
+
55
+ const manifest = await lib.getPackageJson();
56
+ expect(manifest.name).toBe("@stamped-lib");
57
+ expect((manifest.akan as { source: { sha: string } }).source.sha).toBe("3.0.0");
58
+ });
59
+
60
+ test("detects an edit to library source as drift", async () => {
61
+ const { root, source } = await makeLib("drift-lib");
62
+ await source.write({ origin: "akanjs", sha: "3.0.0" });
63
+ await write(path.join(root, "libs/drift-lib/common/helper.ts"), "export const helper = 2;\n");
64
+
65
+ expect((await source.status()).drift).toBe("drifted");
66
+ });
67
+
68
+ test("survives every other akan write to the manifest", async () => {
69
+ const { lib, source } = await makeLib("merge-lib");
70
+ const stamp = await source.write({ origin: "akanjs", sha: "3.0.0" });
71
+ const manifest = await lib.getPackageJson();
72
+ await lib.setPackageJson({ ...manifest, dependencies: { lodash: "4.0.0" } });
73
+
74
+ expect(await source.read()).toEqual(stamp);
75
+ expect((await source.status()).drift).toBe("drifted");
76
+ });
77
+
78
+ test("leaves env values out of the hash — they belong to the installing workspace", async () => {
79
+ const { root, source } = await makeLib("env-lib");
80
+ await source.write({ origin: "akanjs", sha: "3.0.0" });
81
+ await write(path.join(root, "libs/env-lib/env/env.server.testing.ts"), "export const env = { key: 999 };\n");
82
+
83
+ expect((await source.status()).drift).toBe("clean");
84
+ });
85
+ });
86
+
87
+ describe("formatLibStatuses", () => {
88
+ test("marks drifted libraries and counts them", () => {
89
+ const text = formatLibStatuses([
90
+ {
91
+ lib: "util",
92
+ drift: "clean",
93
+ hash: "a".repeat(32),
94
+ stamp: { origin: "akanjs", sha: "3.0.0", hash: "a".repeat(32), syncedAt: "now" },
95
+ },
96
+ {
97
+ lib: "shared",
98
+ drift: "drifted",
99
+ hash: "b".repeat(32),
100
+ stamp: { origin: "akanjs", sha: "3.0.0", hash: "a".repeat(32), syncedAt: "now" },
101
+ },
102
+ { lib: "local", drift: "unstamped", hash: "c".repeat(32), stamp: null },
103
+ ]);
104
+
105
+ expect(text).toContain("DRIFTED libs/shared akanjs@3.0.0");
106
+ expect(text).toContain("unstamped libs/local no akan.source in package.json");
107
+ expect(text).toContain("drifted: 1 / 3");
108
+ });
109
+ });
package/libSource.ts ADDED
@@ -0,0 +1,126 @@
1
+ import type { LibExecutor } from "./executors";
2
+ import type { PackageJson } from "./types";
3
+
4
+ export interface LibSourceStamp {
5
+ /** Where the copy came from: a git remote URL, or `akanjs` for the published package. */
6
+ origin: string;
7
+ /** The origin's commit sha, or the package version when the origin is a registry. */
8
+ sha: string;
9
+ /** Content hash of the library as installed, so a later edit is detectable without the origin. */
10
+ hash: string;
11
+ syncedAt: string;
12
+ }
13
+
14
+ export type LibDrift = "clean" | "drifted" | "unstamped";
15
+
16
+ export interface LibStatus {
17
+ lib: string;
18
+ drift: LibDrift;
19
+ stamp: LibSourceStamp | null;
20
+ hash: string;
21
+ }
22
+
23
+ /**
24
+ * A library's origin, recorded in its own `package.json` under an `akan.source` key.
25
+ *
26
+ * The key rides `package.json` rather than a file of its own because every akan write to a library's
27
+ * manifest is a spread of the existing object (`LibExecutor.syncPackageJson`), so an unknown top-level
28
+ * key survives — while a new root file would have to be added to `libRootAllowedFiles` before
29
+ * `akan sync` stopped rejecting it.
30
+ */
31
+ export class LibSource {
32
+ static readonly manifestKey = "akan";
33
+ /**
34
+ * Left out of the hash. `env/` holds per-deployment values that belong to the workspace the library
35
+ * was installed into, not to the origin, so an env edit is not drift.
36
+ */
37
+ static readonly unhashedDirs = ["env"];
38
+
39
+ #lib: LibExecutor;
40
+ constructor(lib: LibExecutor) {
41
+ this.#lib = lib;
42
+ }
43
+
44
+ get #prefix() {
45
+ return `libs/${this.#lib.name}/`;
46
+ }
47
+
48
+ #isHashed(file: string) {
49
+ const relative = file.slice(this.#prefix.length);
50
+ return !LibSource.unhashedDirs.includes(relative.split("/")[0] ?? "");
51
+ }
52
+
53
+ /** `package.json` cannot hash the stamp it carries, so the key comes off before hashing. */
54
+ async #hashableContent(file: string) {
55
+ const content = await this.#lib.workspace.readFile(file);
56
+ if (file !== `${this.#prefix}package.json`) return content;
57
+ const manifest = JSON.parse(content) as PackageJson;
58
+ delete manifest[LibSource.manifestKey];
59
+ return JSON.stringify(manifest);
60
+ }
61
+
62
+ /**
63
+ * Hash over the library's own files. Untracked files count: a freshly copied library is not committed
64
+ * yet, and its hash has to be the same one a later `status` recomputes.
65
+ */
66
+ async computeHash() {
67
+ const files = (await this.#lib.workspace.listGitFiles([`libs/${this.#lib.name}`], { untracked: true })).filter(
68
+ (file) => this.#isHashed(file),
69
+ );
70
+ const hasher = new Bun.CryptoHasher("sha256");
71
+ for (const file of files) {
72
+ hasher.update(file);
73
+ hasher.update("\0");
74
+ hasher.update(await this.#hashableContent(file));
75
+ hasher.update("\0");
76
+ }
77
+ return hasher.digest("hex").slice(0, 32);
78
+ }
79
+
80
+ async read(): Promise<LibSourceStamp | null> {
81
+ const manifest = await this.#lib.getPackageJson();
82
+ const akan = manifest[LibSource.manifestKey] as { source?: LibSourceStamp } | undefined;
83
+ return akan?.source ?? null;
84
+ }
85
+
86
+ async write({ origin, sha }: Pick<LibSourceStamp, "origin" | "sha">) {
87
+ const [manifest, hash] = await Promise.all([this.#lib.getPackageJson(), this.computeHash()]);
88
+ const akan = (manifest[LibSource.manifestKey] ?? {}) as Record<string, unknown>;
89
+ const stamp: LibSourceStamp = { origin, sha, hash, syncedAt: new Date().toISOString() };
90
+ await this.#lib.setPackageJson({ ...manifest, [LibSource.manifestKey]: { ...akan, source: stamp } });
91
+ return stamp;
92
+ }
93
+
94
+ /**
95
+ * Writes the stamp only when it would change. `syncedAt` moves on every write, so an unconditional
96
+ * write leaves the manifest dirty and defeats an idempotent caller — the hash is computed with the
97
+ * stamp removed, so comparing it first is sound.
98
+ */
99
+ async syncStamp({ origin, sha }: Pick<LibSourceStamp, "origin" | "sha">) {
100
+ const [current, hash] = await Promise.all([this.read(), this.computeHash()]);
101
+ if (current?.origin === origin && current.sha === sha && current.hash === hash)
102
+ return { stamp: current, changed: false };
103
+ return { stamp: await this.write({ origin, sha }), changed: true };
104
+ }
105
+
106
+ async status(): Promise<LibStatus> {
107
+ const [stamp, hash] = await Promise.all([this.read(), this.computeHash()]);
108
+ const drift = !stamp ? "unstamped" : stamp.hash === hash ? "clean" : "drifted";
109
+ return { lib: this.#lib.name, drift, stamp, hash };
110
+ }
111
+ }
112
+
113
+ export function formatLibStatuses(statuses: LibStatus[]) {
114
+ const marks = { clean: "clean ", drifted: "DRIFTED ", unstamped: "unstamped" } as const;
115
+ const sections = [
116
+ "Akan Library Source Status",
117
+ "",
118
+ ...statuses.map((status) => {
119
+ const origin = status.stamp ? `${status.stamp.origin}@${status.stamp.sha}` : "no akan.source in package.json";
120
+ return ` ${marks[status.drift]} libs/${status.lib} ${origin}`;
121
+ }),
122
+ "",
123
+ `drifted: ${statuses.filter((status) => status.drift === "drifted").length} / ${statuses.length}`,
124
+ ];
125
+ return sections.join("\n");
126
+ }
@@ -0,0 +1,40 @@
1
+ # grit rule fixtures
2
+
3
+ One folder per `lint/*.grit` rule. `gritRules.test.ts` runs biome with that one plugin enabled and asserts
4
+ `bad` reports **exactly** the marked lines and `good` reports nothing — so a rule that silently stops
5
+ matching after a biome upgrade fails the suite instead of going quiet, and `every rule in this folder has a
6
+ fixture` fails when a rule is added without one.
7
+
8
+ ## Contract
9
+
10
+ - One case per line. `// @flag` marks a line the rule must report in `bad`; `// @ok` marks a line in `good`.
11
+ - The `bad` assertion is set equality, not containment: a marked line nobody reported is a pattern that
12
+ stopped matching, and a reported line nobody marked is the rule reaching further than the fixture claims.
13
+ - `good` is the half that matters most: an over-matching rule is what makes developers distrust the gate.
14
+ - `fixture.json` is optional:
15
+ - `path` — where the source is written inside the temp workspace, for a rule that reads `$filename`
16
+ (`no-deep-internal-import`, `no-redeclare-predefined-endpoint`). Its extension also picks which of
17
+ `bad.ts` / `bad.tsx` is read.
18
+ - `expect: "file"` — for a rule whose span is the whole file (`no-bang-comment-in-client`), where there is
19
+ no per-line diagnostic to match. `bad` must report at least once.
20
+ - A rule with two independent gates gets one subfolder per gate (`no-init-fetch-in-client/{use-client,store-file}`).
21
+ - These files are excluded from the repo's own biome run (root `biome.json` `files.includes`) and from
22
+ `tsc` (`tsconfig.json` `exclude`), because they reference undeclared identifiers on purpose and the
23
+ formatter would reorder the class strings the vocabulary fixtures test.
24
+
25
+ ## Biome GritQL constraints these fixtures pinned down
26
+
27
+ Each of these made a rule silently report nothing, and each was found by adding the fixture:
28
+
29
+ - A bare snippet in JSX-attribute shape (`` `$name={$value}` ``) matches **no** JsxAttribute. Match the node
30
+ and read its fields: `JsxAttribute(name = $name, initializer = ...)`.
31
+ - `JsModule()` never matches as a top-level pattern, and no node pattern is given comment trivia. A rule
32
+ about comments has to go through `file($name, $body)`, whose span is the whole file.
33
+ - `file()`'s `$body` is the module's **token** span: interior trivia is visible, the leading and trailing
34
+ trivia are not. So a comment above the first statement or below the last one is unreachable from GritQL —
35
+ that is `no-bang-comment-in-client`'s blind spot, and why its fixture puts the marker between statements.
36
+ - A regex capture (`r"..."($var)`) carries no source range: a diagnostic spanned on one gets no location,
37
+ and `$var` does not interpolate into a `message`.
38
+
39
+ The five vocabulary fixtures were ported from `frontendBuild/styleGuard.test.ts`, the pre-grit
40
+ implementation of the same rules, when that scanner was retired.
@@ -0,0 +1,3 @@
1
+ export const HexValue = () => <div className="bg-[#3b82f6]" />; // @flag
2
+ export const ColorFunctionValue = () => <div className="text-[rgb(0,0,0)]" />; // @flag
3
+ export const HslValue = () => <div className="border-[hsl(210,100%,50%)]" />; // @flag
@@ -0,0 +1,4 @@
1
+ export const CssVariableShorthand = () => <div className="bg-[--brand]" />; // @ok
2
+ export const CssVariableFunction = () => <div className="text-[var(--fg)]" />; // @ok
3
+ export const ArbitrarySizeNotColor = () => <div className="min-h-[300px] w-[42ch]" />; // @ok
4
+ export const SemanticToken = () => <div className="bg-primary" />; // @ok
@@ -0,0 +1,4 @@
1
+ export const Card = async () => <div className="flex" />; // @flag
2
+ export const Typed: FC = async () => <div className="flex" />; // @flag
3
+ export async function Panel() { return <div className="flex" />; } // @flag
4
+ export default async function Shell() { return <div className="flex" />; } // @flag
@@ -0,0 +1,4 @@
1
+ export const Card = () => <div className="flex" />; // @ok
2
+ export const Handler = () => { const onSave = async () => save(); return <button onClick={onSave} />; }; // @ok
3
+ export const loadThing = async () => await fetchThing(); // @ok
4
+ export function Panel() { return <div className="flex" />; } // @ok
@@ -0,0 +1,4 @@
1
+ export const a = 1;
2
+ //! FIXME: this marker survives minification and ships to every visitor
3
+ /*! and so does the block form */
4
+ export const b = 2;
@@ -0,0 +1 @@
1
+ { "expect": "file" }
@@ -0,0 +1,3 @@
1
+ // FIXME: the client-reachable spelling of the same note // @ok
2
+ export const url = "https://host//!path"; // @ok
3
+ export const a = 1; // @ok
@@ -0,0 +1,7 @@
1
+ export const CompoundButton = () => <button className="btn-primary" />; // @flag
2
+ export const CompoundBadge = () => <span className="badge-success" />; // @flag
3
+ export const DroppedBaseSurface = () => <div className="bg-base-100" />; // @flag
4
+ export const DroppedBaseContentWithOpacity = () => <div className="text-base-content/70" />; // @flag
5
+ export const DroppedBaseOnABorderSide = () => <div className="border-t-base-300" />; // @flag
6
+ export const DroppedPrimaryContent = () => <div className="text-primary-content" />; // @flag
7
+ export const DroppedErrorSlot = () => <div className="bg-error/5" />; // @flag
@@ -0,0 +1,5 @@
1
+ export const BareAmbiguousNamesCollideWithTailwind = () => <div className="card input badge btn" />; // @ok
2
+ export const SurvivingSemanticPair = () => <div className="bg-primary text-primary-foreground" />; // @ok
3
+ export const SurvivingStatusTokens = () => <div className="bg-neutral text-info border-warning" />; // @ok
4
+ export const DestructiveReplacesError = () => <div className="bg-destructive/10 text-destructive" />; // @ok
5
+ export const UnrelatedContentUtilities = () => <div className="content-center justify-content" />; // @ok
@@ -0,0 +1,3 @@
1
+ import { userConstant } from "@libs/shared/lib/user/user.constant"; // @flag
2
+ import { helper } from "../../common/helper"; // @flag
3
+ import * as cnst from "../cnst"; // @flag
@@ -0,0 +1 @@
1
+ { "path": "apps/demo/lib/task/Task.Zone.tsx" }
@@ -0,0 +1,3 @@
1
+ import { cnst, st } from "@apps/demo/client"; // @ok
2
+ import { Task } from "./task.constant"; // @ok
3
+ import { env } from "@apps/demo/env/env.client"; // @ok
@@ -0,0 +1,4 @@
1
+ export const viaLocal = () => logger.log("x"); // @flag
2
+ export const viaStatic = () => Logger.log("x"); // @flag
3
+ export class ViaField { run() { this.logger.log("x"); } } // @flag
4
+ export class ViaPrivateField { run() { this.#logger.log("x"); } } // @flag
@@ -0,0 +1,4 @@
1
+ export const infoIsTheReplacement = () => logger.info("x"); // @ok
2
+ export const otherLevelsAreFine = () => logger.warn("x"); // @ok
3
+ export const anUnrelatedReceiverIsNotTheLadder = () => auditTrail.log("x"); // @ok
4
+ export const consoleIsBiomesOwnRule = () => console.log("x"); // @ok
@@ -0,0 +1,2 @@
1
+ import { useState } from "react"; // @flag
2
+ import { st } from "../st"; // @flag
@@ -0,0 +1,4 @@
1
+ import type { ReactNode } from "react"; // @ok
2
+ import { cnst } from "@libs/shared/client"; // @ok
3
+ import { usePage } from "akanjs/client"; // @ok
4
+ export const Card = ({ children }: { children: ReactNode }) => <div>{children}</div>; // @ok
@@ -0,0 +1,6 @@
1
+ import { TaskStore } from "./task.store"; // @flag
2
+ import { Card } from "./Task.Unit"; // @flag
3
+ import { Button } from "@libs/shared/ui"; // @flag
4
+ import { useSpeech } from "@libs/util/webkit"; // @flag
5
+ import { cn } from "akanjs/client"; // @flag
6
+ import { st } from "../st"; // @flag
@@ -0,0 +1,5 @@
1
+ import type { TaskStore } from "./task.store"; // @ok
2
+ import * as cnst from "../cnst"; // @ok
3
+ import * as db from "../db"; // @ok
4
+ import { Err } from "../dict"; // @ok
5
+ import { Admin } from "@libs/shared/srvkit"; // @ok
@@ -0,0 +1,4 @@
1
+ import dayjs from "dayjs"; // @flag
2
+ import { z } from "zod"; // @flag
3
+ import fs from "node:fs"; // @flag
4
+ import { clsx } from "clsx"; // @flag
@@ -0,0 +1,5 @@
1
+ import { Ticket } from "./ticket.constant"; // @ok
2
+ import { cnst } from "@libs/shared/client"; // @ok
3
+ import { field } from "akanjs/constant"; // @ok
4
+ import { useState } from "react"; // @ok
5
+ import { test } from "bun:test"; // @ok
@@ -0,0 +1,6 @@
1
+ import { TaskService } from "./task.service"; // @flag
2
+ import { TaskModel } from "./task.document"; // @flag
3
+ import { Admin } from "@libs/shared/srvkit"; // @flag
4
+ import { AkanServer } from "akanjs/server"; // @flag
5
+ import * as db from "../db"; // @flag
6
+ import { Err } from "../dict"; // @flag
@@ -0,0 +1,4 @@
1
+ import type { TaskService } from "./task.service"; // @ok
2
+ import * as cnst from "../cnst"; // @ok
3
+ import { st } from "../st"; // @ok
4
+ import { Err, Task } from "@libs/shared/client"; // @ok
@@ -0,0 +1 @@
1
+ export class TaskStore { async reload(orgId: string) { const snapshot = await fetch.initTaskInOrg(orgId); } } // @flag
@@ -0,0 +1 @@
1
+ { "path": "apps/demo/lib/task/task.store.ts" }
@@ -0,0 +1 @@
1
+ export class TaskStore { async reload() { await st.do.initTaskInOrg(); } } // @ok
@@ -0,0 +1,4 @@
1
+ "use client";
2
+
3
+ export const A = () => { void fetch.initTaskInOrg(orgId); }; // @flag
4
+ export const B = () => { void fetch.getTaskInitInOrg(orgId); }; // @flag
@@ -0,0 +1,5 @@
1
+ "use client";
2
+
3
+ export const C = () => { void fetch.initPayment(sessionId); }; // @ok
4
+ export const D = () => { void st.do.initTaskInOrg(); }; // @ok
5
+ export const E = () => { void fetch.viewTask(taskId); }; // @ok
@@ -0,0 +1,3 @@
1
+ export const HexInStyleObject = () => <div style={{ color: "#fff" }} />; // @flag
2
+ export const RgbInStyleObject = () => <div style={{ background: "rgb(0,0,0)" }} />; // @flag
3
+ export const ColorLiteralInStyleTag = () => <style>{`.x { color: #abcdef; }`}</style>; // @flag
@@ -0,0 +1,3 @@
1
+ export const VarReferenceInStyleObject = () => <div style={{ color: "var(--primary)" }} />; // @ok
2
+ export const NonColorStyleProperty = () => <div style={{ width: "100%" }} />; // @ok
3
+ export const ComputedNonColorStyle = () => <div style={{ minHeight }} />; // @ok
@@ -0,0 +1,3 @@
1
+ export const SizeFromRuntimeExpression = () => <div className={`min-h-[${minHeight}px] flex`} />; // @flag
2
+ export const ColorFromRuntimeExpression = () => <div className={`bg-[${color}] w-full`} />; // @flag
3
+ export const BrokenBracketSwallowsNextClass = () => <div className={`min-h-[ w-full${minHeight}px] flex`} />; // @flag
@@ -0,0 +1,3 @@
1
+ export const LiteralArbitraryValue = () => <div className="min-h-[300px] flex" />; // @ok
2
+ export const InterpolationOutsideBrackets = () => <div className={`flex gap-2 ${isOpen ? "opacity-50" : ""}`} />; // @ok
3
+ export const InterpolationInStylePropNotClass = () => <div style={{ minHeight }} className={`flex ${extra}`} />; // @ok
@@ -0,0 +1,3 @@
1
+ export class SyncPrivate { #compute() { return 1; } } // @flag
2
+ export class AsyncPrivate { async #load() { return 1; } } // @flag
3
+ export class CallsPrivate { run() { this.#compute(); } } // @flag
@@ -0,0 +1,3 @@
1
+ export class TypescriptPrivate { private _compute() { return 1; } } // @ok
2
+ export class CallsUnderscore { run() { this._compute(); } } // @ok
3
+ export class PrivateField { #cache = new Map(); } // @ok
@@ -0,0 +1,3 @@
1
+ export interface CardProps { task: cnst.Task; } // @flag
2
+ export type RowProps = { banner: cnst.LightBanner }; // @flag
3
+ export const View = ({ task }: { task: cnst.Task }) => <div className="flex" />; // @flag
@@ -0,0 +1,6 @@
1
+ export interface IdProps { taskId: string; } // @ok
2
+ export interface EnumProps { role: cnst.AdminRole["value"]; } // @ok
3
+ export interface InitProps { init: ClientInit<cnst.Task>; } // @ok
4
+ export interface CallbackProps { onPick: (task: cnst.Task) => void; } // @ok
5
+ export interface ModelsWrapperProps { models: ModelsProps<cnst.Task>; } // @ok
6
+ export const localAnnotationStaysInFile = (raw: unknown) => raw as cnst.Task; // @ok
@@ -0,0 +1,6 @@
1
+ export const TwoInOneString = () => <div className="bg-blue-500 text-gray-700" />; // @flag
2
+ export const VariantPrefixAndOpacity = () => <div className="hover:bg-red-500/50" />; // @flag
3
+ export const NumericNeutral = () => <div className="bg-neutral-500" />; // @flag
4
+ export const AlongsideAUrlString = () => <a href="https://x.io" className="bg-blue-500" />; // @flag
5
+ export const BorderSide = () => <div className="border-t-emerald-300" />; // @flag
6
+ export const InsideCn = () => <div className={cn("flex", "text-slate-400")} />; // @flag
@@ -0,0 +1,8 @@
1
+ export const BareSemanticNeutral = () => <div className="bg-neutral text-neutral-foreground" />; // @ok
2
+ export const SemanticTokens = () => <div className="bg-primary text-muted-foreground border-border" />; // @ok
3
+ export const BlackAndWhiteStayInVocabulary = () => <div className="bg-black text-white bg-white/30 bg-black/50" />; // @ok
4
+ export const NonColorNumericUtilities = () => <div className="gap-4 mt-2 grid-cols-3 w-500" />; // @ok
5
+ export const OpacityOnASemanticToken = () => <div className="text-foreground/70 bg-primary/10" />; // @ok
6
+ // iconClassName="bg-blue-500" — a class name in a line comment is not code
7
+ /** legacy: bg-red-500 */
8
+ export const CommentsAreNotCode = () => <div className="flex" />; // @ok
@@ -0,0 +1,10 @@
1
+ export class TaskEndpoint extends endpoint(srv.task, ({ query, mutation }) => ({
2
+ task: query(cnst.Task).exec(() => null), // @flag
3
+ lightTask: query(cnst.Task).exec(() => null), // @flag
4
+ createTask: mutation(cnst.Task).exec(() => null), // @flag
5
+ updateTask: mutation(cnst.Task).exec(() => null), // @flag
6
+ removeTask: mutation(cnst.Task).exec(() => null), // @flag
7
+ viewTask: query(cnst.Task).exec(() => null), // @flag
8
+ editTask: query(cnst.Task).exec(() => null), // @flag
9
+ mergeTask: mutation(cnst.Task).exec(() => null), // @flag
10
+ })) {}
@@ -0,0 +1 @@
1
+ { "path": "apps/demo/lib/task/task.signal.ts" }
@@ -0,0 +1,6 @@
1
+ export class TaskEndpoint extends endpoint(srv.task, ({ query, mutation }) => ({
2
+ startTask: mutation(cnst.Task).exec(() => null), // @ok
3
+ taskSummary: query(cnst.Task).exec(() => null), // @ok
4
+ viewTaskBoard: query(cnst.Task).exec(() => null), // @ok
5
+ createTaskComment: mutation(cnst.Task).exec(() => null), // @ok
6
+ })) {}
@@ -0,0 +1,2 @@
1
+ export class AStore extends store(sig.a, () => ({})) { load() { return 1; } } // @flag
2
+ export class BStore extends store(sig.b, () => ({})) { async save() { return true; } } // @flag
@@ -0,0 +1,6 @@
1
+ export class CStore extends store(sig.c, () => ({})) { load() { this.set({ n: 1 }); } } // @ok
2
+ export class DStore extends store(sig.d, () => ({})) { load() { if (!this.get()) return; this.set({ n: 1 }); } } // @ok
3
+ export class EStore extends store(sig.e, () => ({})) { static helper() { return 1; } } // @ok
4
+ export class FStore extends store(sig.f, () => ({})) { get total() { return 1; } } // @ok
5
+ export class GStore extends store(sig.g, () => ({})) { load() { items.map((x) => { return x; }); } } // @ok
6
+ export class HPlain { load() { return 1; } } // @ok
@@ -0,0 +1,4 @@
1
+ export const throwsNewError = () => { throw new Error("boom"); }; // @flag
2
+ export const throwsBareError = () => { throw Error("boom"); }; // @flag
3
+ export const throwsWithCause = () => { throw new Error("boom", { cause: reason }); }; // @flag
4
+ export const throwsWithNoArgument = () => { throw new Error(); }; // @flag
@@ -0,0 +1,4 @@
1
+ export const throwsErr = () => { throw new Err("ticket.error.notFound"); }; // @ok
2
+ export const throwsASubclass = () => { throw new HttpError("boom"); }; // @ok
3
+ export const constructsWithoutThrowing = () => new Error("boom"); // @ok
4
+ export const rethrowsACaught = () => { try { run(); } catch (error) { throw error; } }; // @ok
@@ -0,0 +1,3 @@
1
+ export const A = () => <Field.Text onChange={(v) => st.do.setNameOnTask(v)} />; // @flag
2
+ export const B = () => <Switch onChange={(value) => void st.do.setDoneOnTask(value)} />; // @flag
3
+ export const C = () => <Select onChange={(v) => { st.do.setTypeOnTask(v); }} />; // @flag
@@ -0,0 +1,5 @@
1
+ export const D = () => <Field.Text onChange={st.do.setNameOnTask} />; // @ok
2
+ export const E = () => <Field.Text onChange={(v) => st.do.setNameOnTask(formatPhone(v))} />; // @ok
3
+ export const F = () => <Field.Text onChange={(v) => { st.do.setNameOnTask(v); track(v); }} />; // @ok
4
+ export const G = () => <Field.Text onChange={(v) => st.do.writeOnTask("rows.3.name", v)} />; // @ok
5
+ export const H = () => <Field.Text onChange={(a, b) => st.do.setNameOnTask(a)} />; // @ok
@@ -0,0 +1,3 @@
1
+ "use client"; // @flag
2
+
3
+ export const Card = () => <div className="flex" />;
@@ -0,0 +1,2 @@
1
+ export const Card = () => <div className="flex" />; // @ok
2
+ export const note = "server only"; // @ok
@@ -0,0 +1,5 @@
1
+ export const ArrowProp = () => <Button onClick={() => save()} />; // @flag
2
+ export const ArrowWithTwoParams = () => <Button onSelect={(id, kind) => save(id, kind)} />; // @flag
3
+ export const ArrowWithBareParam = () => <Button onChange={value => save(value)} />; // @flag
4
+ export const FunctionExpressionProp = () => <Button onClick={function () { save(); }} />; // @flag
5
+ export const NamedFunctionProp = () => <Button onClick={function handle() { save(); }} />; // @flag
@@ -0,0 +1,4 @@
1
+ export const LoaderIsAllowed = () => <Zone loader={() => fetchThing()} />; // @ok
2
+ export const OfIsAllowed = () => <Load of={() => fetchThing()} />; // @ok
3
+ export const ScalarProps = () => <Button label="Save" count={3} disabled />; // @ok
4
+ export const IdentifierProp = () => <Button onClick={handleSave} />; // @ok