@pyreon/lint 0.12.13 → 0.12.14
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.
- package/README.md +55 -2
- package/lib/analysis/cli.js.html +1 -1
- package/lib/analysis/index.js.html +1 -1
- package/lib/cli.js +960 -162
- package/lib/cli.js.map +1 -1
- package/lib/index.js +935 -161
- package/lib/index.js.map +1 -1
- package/lib/types/index.d.ts +96 -23
- package/lib/types/index.d.ts.map +1 -1
- package/package.json +2 -1
- package/schema/pyreonlintrc.schema.json +64 -0
- package/src/cli.ts +44 -2
- package/src/config/presets.ts +13 -1
- package/src/index.ts +7 -0
- package/src/lint.ts +37 -6
- package/src/lsp/index.ts +15 -2
- package/src/rules/architecture/dev-guard-warnings.ts +172 -17
- package/src/rules/architecture/no-circular-import.ts +7 -0
- package/src/rules/architecture/no-process-dev-gate.ts +18 -45
- package/src/rules/architecture/require-browser-smoke-test.ts +227 -0
- package/src/rules/form/no-submit-without-validation.ts +9 -0
- package/src/rules/form/no-unregistered-field.ts +9 -0
- package/src/rules/hooks/no-raw-addeventlistener.ts +7 -0
- package/src/rules/hooks/no-raw-localstorage.ts +12 -1
- package/src/rules/hooks/no-raw-setinterval.ts +14 -0
- package/src/rules/index.ts +4 -1
- package/src/rules/jsx/no-props-destructure.ts +20 -6
- package/src/rules/lifecycle/no-dom-in-setup.ts +67 -7
- package/src/rules/reactivity/no-bare-signal-in-jsx.ts +12 -1
- package/src/rules/reactivity/no-unbatched-updates.ts +3 -0
- package/src/rules/router/no-imperative-navigate-in-render.ts +131 -35
- package/src/rules/ssr/no-window-in-ssr.ts +418 -35
- package/src/rules/store/no-duplicate-store-id.ts +11 -0
- package/src/rules/store/no-mutate-store-state.ts +11 -1
- package/src/rules/styling/no-dynamic-styled.ts +13 -24
- package/src/rules/styling/no-theme-outside-provider.ts +34 -2
- package/src/runner.ts +100 -10
- package/src/tests/runner.test.ts +1573 -21
- package/src/types.ts +74 -3
- package/src/utils/component-context.ts +106 -0
- package/src/utils/exempt-paths.ts +39 -0
- package/src/utils/file-roles.ts +32 -0
- package/src/utils/imports.ts +4 -1
- package/src/utils/validate-options.ts +68 -0
- package/src/watcher.ts +17 -0
package/README.md
CHANGED
|
@@ -182,6 +182,50 @@ const fileResult = lintFile('app.tsx', source, allRules, getPreset('recommended'
|
|
|
182
182
|
| `app` | Recommended minus library-only rules |
|
|
183
183
|
| `lib` | Strict plus architecture checks |
|
|
184
184
|
|
|
185
|
+
## Rule Options
|
|
186
|
+
|
|
187
|
+
Every rule entry in your config accepts either a bare severity or a `[severity, options]` tuple — ESLint-style. The tuple form lets you pass per-rule options without a bespoke API per rule.
|
|
188
|
+
|
|
189
|
+
```json
|
|
190
|
+
// .pyreonlintrc.json
|
|
191
|
+
{
|
|
192
|
+
"$schema": "./node_modules/@pyreon/lint/schema/pyreonlintrc.schema.json",
|
|
193
|
+
"preset": "recommended",
|
|
194
|
+
"rules": {
|
|
195
|
+
"pyreon/no-window-in-ssr": "error",
|
|
196
|
+
"pyreon/no-raw-addeventlistener": [
|
|
197
|
+
"info",
|
|
198
|
+
{ "exemptPaths": ["packages/core/runtime-dom/", "src/foundation/"] }
|
|
199
|
+
]
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
```
|
|
203
|
+
|
|
204
|
+
The `$schema` reference enables IDE autocomplete + validation when editing the config — VSCode, IntelliJ, Zed, and the LSP all pick it up automatically.
|
|
205
|
+
|
|
206
|
+
**Convention: `exemptPaths`.** Rules that support path-based exemption read `options.exemptPaths: string[]`. Each entry is a substring match against the file path. Missing or empty → no exemptions. Rules currently supporting `exemptPaths`:
|
|
207
|
+
|
|
208
|
+
- `pyreon/no-window-in-ssr` — packages that are DOM-only (no SSR scenario)
|
|
209
|
+
- `pyreon/no-raw-addeventlistener` — packages implementing `useEventListener` / event delegation
|
|
210
|
+
- `pyreon/no-raw-setinterval` — packages implementing `useInterval` / `useTimeout`
|
|
211
|
+
- `pyreon/no-process-dev-gate` — server-only directories (Node environments)
|
|
212
|
+
- `pyreon/dev-guard-warnings` — server-only + demo / example directories
|
|
213
|
+
- `pyreon/require-browser-smoke-test` — packages explicitly opted out (e.g. experimental); also accepts `additionalPackages: string[]` to extend the browser-categorized list
|
|
214
|
+
|
|
215
|
+
**Validation.** Each rule declares its option shape in `meta.schema`. The runner validates user config once per `(rule, options)` pair:
|
|
216
|
+
|
|
217
|
+
- Unknown option keys → warning surfaced on `LintResult.configDiagnostics` (and stderr), rule stays enabled
|
|
218
|
+
- Wrong-typed values → error surfaced on `LintResult.configDiagnostics` (and stderr), rule disabled for that run
|
|
219
|
+
- Rules without a schema accept any options (no validation)
|
|
220
|
+
|
|
221
|
+
Programmatic consumers (CI dashboards, LSP, JSON reporters) read `result.configDiagnostics` alongside `result.files[].diagnostics`.
|
|
222
|
+
|
|
223
|
+
**CLI option overrides.** `--rule-options id='{json}'` passes JSON-encoded options to a specific rule from the command line — useful for one-off lint runs without editing the config file:
|
|
224
|
+
|
|
225
|
+
```bash
|
|
226
|
+
pyreon-lint --rule-options 'pyreon/no-window-in-ssr={"exemptPaths":["src/foundation/"]}' src/
|
|
227
|
+
```
|
|
228
|
+
|
|
185
229
|
## Custom Rules
|
|
186
230
|
|
|
187
231
|
```ts
|
|
@@ -194,11 +238,20 @@ const myRule: Rule = {
|
|
|
194
238
|
description: 'My custom rule',
|
|
195
239
|
severity: 'warn',
|
|
196
240
|
fixable: false,
|
|
241
|
+
// Optional: declare options shape. If present, the runner validates
|
|
242
|
+
// user config against it. Supported types:
|
|
243
|
+
// 'string' | 'string[]' | 'number' | 'boolean'
|
|
244
|
+
schema: { exemptPaths: 'string[]' },
|
|
197
245
|
},
|
|
198
246
|
create(context) {
|
|
247
|
+
// Read options from user config (tuple form).
|
|
248
|
+
const options = context.getOptions()
|
|
249
|
+
// Or use the `isPathExempt` helper for the `exemptPaths` convention:
|
|
250
|
+
// import { isPathExempt } from '@pyreon/lint'
|
|
251
|
+
// if (isPathExempt(context)) return {}
|
|
252
|
+
|
|
199
253
|
return {
|
|
200
|
-
CallExpression(node
|
|
201
|
-
// Your rule logic
|
|
254
|
+
CallExpression(node) {
|
|
202
255
|
context.report({
|
|
203
256
|
message: 'Something is wrong',
|
|
204
257
|
span: { start: node.start, end: node.end },
|
package/lib/analysis/cli.js.html
CHANGED
|
@@ -5386,7 +5386,7 @@ var drawChart = (function (exports) {
|
|
|
5386
5386
|
</script>
|
|
5387
5387
|
<script>
|
|
5388
5388
|
/*<!--*/
|
|
5389
|
-
const data = {"version":2,"tree":{"name":"root","children":[{"name":"cli.js","children":[{"name":"src","children":[{"uid":"c64c7300-1","name":"cache.ts"},{"name":"config","children":[{"uid":"c64c7300-3","name":"ignore.ts"},{"uid":"c64c7300-5","name":"loader.ts"},{"uid":"c64c7300-129","name":"presets.ts"}]},{"name":"utils","children":[{"uid":"c64c7300-7","name":"imports.ts"},{"uid":"c64c7300-9","name":"ast.ts"},{"uid":"c64c7300-131","name":"source.ts"},{"uid":"c64c7300-133","name":"index.ts"}]},{"name":"rules","children":[{"name":"accessibility","children":[{"uid":"c64c7300-11","name":"dialog-a11y.ts"},{"uid":"c64c7300-13","name":"overlay-a11y.ts"},{"uid":"c64c7300-15","name":"toast-a11y.ts"}]},{"name":"architecture","children":[{"uid":"c64c7300-17","name":"dev-guard-warnings.ts"},{"uid":"c64c7300-19","name":"no-circular-import.ts"},{"uid":"c64c7300-21","name":"no-cross-layer-import.ts"},{"uid":"c64c7300-23","name":"no-deep-import.ts"},{"uid":"c64c7300-25","name":"no-error-without-prefix.ts"},{"uid":"c64c7300-27","name":"no-process-dev-gate.ts"}]},{"name":"form","children":[{"uid":"c64c7300-29","name":"no-submit-without-validation.ts"},{"uid":"c64c7300-31","name":"no-unregistered-field.ts"},{"uid":"c64c7300-33","name":"prefer-field-array.ts"}]},{"name":"hooks","children":[{"uid":"c64c7300-35","name":"no-raw-addeventlistener.ts"},{"uid":"c64c7300-37","name":"no-raw-localstorage.ts"},{"uid":"c64c7300-39","name":"no-raw-setinterval.ts"}]},{"name":"jsx","children":[{"uid":"c64c7300-41","name":"no-and-conditional.ts"},{"uid":"c64c7300-43","name":"no-children-access.ts"},{"uid":"c64c7300-45","name":"no-classname.ts"},{"uid":"c64c7300-47","name":"no-htmlfor.ts"},{"uid":"c64c7300-49","name":"no-index-as-by.ts"},{"uid":"c64c7300-51","name":"no-map-in-jsx.ts"},{"uid":"c64c7300-53","name":"no-missing-for-by.ts"},{"uid":"c64c7300-55","name":"no-onchange.ts"},{"uid":"c64c7300-57","name":"no-props-destructure.ts"},{"uid":"c64c7300-59","name":"no-ternary-conditional.ts"},{"uid":"c64c7300-61","name":"use-by-not-key.ts"}]},{"name":"lifecycle","children":[{"uid":"c64c7300-63","name":"no-dom-in-setup.ts"},{"uid":"c64c7300-65","name":"no-effect-in-mount.ts"},{"uid":"c64c7300-67","name":"no-missing-cleanup.ts"},{"uid":"c64c7300-69","name":"no-mount-in-effect.ts"}]},{"name":"performance","children":[{"uid":"c64c7300-71","name":"no-eager-import.ts"},{"uid":"c64c7300-73","name":"no-effect-in-for.ts"},{"uid":"c64c7300-75","name":"no-large-for-without-by.ts"},{"uid":"c64c7300-77","name":"prefer-show-over-display.ts"}]},{"name":"reactivity","children":[{"uid":"c64c7300-79","name":"no-bare-signal-in-jsx.ts"},{"uid":"c64c7300-81","name":"no-context-destructure.ts"},{"uid":"c64c7300-83","name":"no-effect-assignment.ts"},{"uid":"c64c7300-85","name":"no-nested-effect.ts"},{"uid":"c64c7300-87","name":"no-peek-in-tracked.ts"},{"uid":"c64c7300-89","name":"no-signal-in-loop.ts"},{"uid":"c64c7300-91","name":"no-signal-in-props.ts"},{"uid":"c64c7300-93","name":"no-signal-leak.ts"},{"uid":"c64c7300-95","name":"no-unbatched-updates.ts"},{"uid":"c64c7300-97","name":"prefer-computed.ts"}]},{"name":"router","children":[{"uid":"c64c7300-99","name":"no-href-navigation.ts"},{"uid":"c64c7300-101","name":"no-imperative-navigate-in-render.ts"},{"uid":"c64c7300-103","name":"no-missing-fallback.ts"},{"uid":"c64c7300-105","name":"prefer-use-is-active.ts"}]},{"name":"ssr","children":[{"uid":"c64c7300-107","name":"no-mismatch-risk.ts"},{"uid":"c64c7300-109","name":"no-window-in-ssr.ts"},{"uid":"c64c7300-111","name":"prefer-request-context.ts"}]},{"name":"store","children":[{"uid":"c64c7300-113","name":"no-duplicate-store-id.ts"},{"uid":"c64c7300-115","name":"no-mutate-store-state.ts"},{"uid":"c64c7300-117","name":"no-store-outside-provider.ts"}]},{"name":"styling","children":[{"uid":"c64c7300-119","name":"no-dynamic-styled.ts"},{"uid":"c64c7300-121","name":"no-inline-style-object.ts"},{"uid":"c64c7300-123","name":"no-theme-outside-provider.ts"},{"uid":"c64c7300-125","name":"prefer-cx.ts"}]},{"uid":"c64c7300-127","name":"index.ts"}]},{"uid":"c64c7300-135","name":"runner.ts"},{"uid":"c64c7300-137","name":"lint.ts"},{"name":"lsp/index.ts","uid":"c64c7300-139"},{"uid":"c64c7300-141","name":"reporter.ts"},{"uid":"c64c7300-143","name":"watcher.ts"},{"uid":"c64c7300-145","name":"cli.ts"}]}]}],"isRoot":true},"nodeParts":{"c64c7300-1":{"renderedLength":1035,"gzipLength":568,"brotliLength":0,"metaUid":"c64c7300-0"},"c64c7300-3":{"renderedLength":3011,"gzipLength":1239,"brotliLength":0,"metaUid":"c64c7300-2"},"c64c7300-5":{"renderedLength":1626,"gzipLength":713,"brotliLength":0,"metaUid":"c64c7300-4"},"c64c7300-7":{"renderedLength":1524,"gzipLength":647,"brotliLength":0,"metaUid":"c64c7300-6"},"c64c7300-9":{"renderedLength":2849,"gzipLength":776,"brotliLength":0,"metaUid":"c64c7300-8"},"c64c7300-11":{"renderedLength":775,"gzipLength":445,"brotliLength":0,"metaUid":"c64c7300-10"},"c64c7300-13":{"renderedLength":864,"gzipLength":470,"brotliLength":0,"metaUid":"c64c7300-12"},"c64c7300-15":{"renderedLength":1014,"gzipLength":554,"brotliLength":0,"metaUid":"c64c7300-14"},"c64c7300-17":{"renderedLength":1384,"gzipLength":617,"brotliLength":0,"metaUid":"c64c7300-16"},"c64c7300-19":{"renderedLength":1388,"gzipLength":674,"brotliLength":0,"metaUid":"c64c7300-18"},"c64c7300-21":{"renderedLength":1688,"gzipLength":687,"brotliLength":0,"metaUid":"c64c7300-20"},"c64c7300-23":{"renderedLength":710,"gzipLength":443,"brotliLength":0,"metaUid":"c64c7300-22"},"c64c7300-25":{"renderedLength":2127,"gzipLength":819,"brotliLength":0,"metaUid":"c64c7300-24"},"c64c7300-27":{"renderedLength":5979,"gzipLength":2048,"brotliLength":0,"metaUid":"c64c7300-26"},"c64c7300-29":{"renderedLength":1182,"gzipLength":592,"brotliLength":0,"metaUid":"c64c7300-28"},"c64c7300-31":{"renderedLength":1258,"gzipLength":613,"brotliLength":0,"metaUid":"c64c7300-30"},"c64c7300-33":{"renderedLength":905,"gzipLength":500,"brotliLength":0,"metaUid":"c64c7300-32"},"c64c7300-35":{"renderedLength":740,"gzipLength":425,"brotliLength":0,"metaUid":"c64c7300-34"},"c64c7300-37":{"renderedLength":987,"gzipLength":537,"brotliLength":0,"metaUid":"c64c7300-36"},"c64c7300-39":{"renderedLength":924,"gzipLength":508,"brotliLength":0,"metaUid":"c64c7300-38"},"c64c7300-41":{"renderedLength":718,"gzipLength":404,"brotliLength":0,"metaUid":"c64c7300-40"},"c64c7300-43":{"renderedLength":967,"gzipLength":507,"brotliLength":0,"metaUid":"c64c7300-42"},"c64c7300-45":{"renderedLength":680,"gzipLength":373,"brotliLength":0,"metaUid":"c64c7300-44"},"c64c7300-47":{"renderedLength":662,"gzipLength":371,"brotliLength":0,"metaUid":"c64c7300-46"},"c64c7300-49":{"renderedLength":1641,"gzipLength":677,"brotliLength":0,"metaUid":"c64c7300-48"},"c64c7300-51":{"renderedLength":839,"gzipLength":451,"brotliLength":0,"metaUid":"c64c7300-50"},"c64c7300-53":{"renderedLength":617,"gzipLength":408,"brotliLength":0,"metaUid":"c64c7300-52"},"c64c7300-55":{"renderedLength":1068,"gzipLength":555,"brotliLength":0,"metaUid":"c64c7300-54"},"c64c7300-57":{"renderedLength":2729,"gzipLength":1039,"brotliLength":0,"metaUid":"c64c7300-56"},"c64c7300-59":{"renderedLength":748,"gzipLength":411,"brotliLength":0,"metaUid":"c64c7300-58"},"c64c7300-61":{"renderedLength":825,"gzipLength":454,"brotliLength":0,"metaUid":"c64c7300-60"},"c64c7300-63":{"renderedLength":1158,"gzipLength":596,"brotliLength":0,"metaUid":"c64c7300-62"},"c64c7300-65":{"renderedLength":780,"gzipLength":414,"brotliLength":0,"metaUid":"c64c7300-64"},"c64c7300-67":{"renderedLength":1844,"gzipLength":792,"brotliLength":0,"metaUid":"c64c7300-66"},"c64c7300-69":{"renderedLength":707,"gzipLength":396,"brotliLength":0,"metaUid":"c64c7300-68"},"c64c7300-71":{"renderedLength":636,"gzipLength":427,"brotliLength":0,"metaUid":"c64c7300-70"},"c64c7300-73":{"renderedLength":947,"gzipLength":492,"brotliLength":0,"metaUid":"c64c7300-72"},"c64c7300-75":{"renderedLength":696,"gzipLength":431,"brotliLength":0,"metaUid":"c64c7300-74"},"c64c7300-77":{"renderedLength":1232,"gzipLength":600,"brotliLength":0,"metaUid":"c64c7300-76"},"c64c7300-79":{"renderedLength":1266,"gzipLength":635,"brotliLength":0,"metaUid":"c64c7300-78"},"c64c7300-81":{"renderedLength":1161,"gzipLength":580,"brotliLength":0,"metaUid":"c64c7300-80"},"c64c7300-83":{"renderedLength":1450,"gzipLength":617,"brotliLength":0,"metaUid":"c64c7300-82"},"c64c7300-85":{"renderedLength":686,"gzipLength":396,"brotliLength":0,"metaUid":"c64c7300-84"},"c64c7300-87":{"renderedLength":821,"gzipLength":440,"brotliLength":0,"metaUid":"c64c7300-86"},"c64c7300-89":{"renderedLength":1217,"gzipLength":514,"brotliLength":0,"metaUid":"c64c7300-88"},"c64c7300-91":{"renderedLength":1620,"gzipLength":821,"brotliLength":0,"metaUid":"c64c7300-90"},"c64c7300-93":{"renderedLength":1348,"gzipLength":652,"brotliLength":0,"metaUid":"c64c7300-92"},"c64c7300-95":{"renderedLength":1672,"gzipLength":680,"brotliLength":0,"metaUid":"c64c7300-94"},"c64c7300-97":{"renderedLength":1280,"gzipLength":561,"brotliLength":0,"metaUid":"c64c7300-96"},"c64c7300-99":{"renderedLength":1247,"gzipLength":642,"brotliLength":0,"metaUid":"c64c7300-98"},"c64c7300-101":{"renderedLength":1887,"gzipLength":716,"brotliLength":0,"metaUid":"c64c7300-100"},"c64c7300-103":{"renderedLength":2081,"gzipLength":873,"brotliLength":0,"metaUid":"c64c7300-102"},"c64c7300-105":{"renderedLength":1126,"gzipLength":551,"brotliLength":0,"metaUid":"c64c7300-104"},"c64c7300-107":{"renderedLength":1062,"gzipLength":556,"brotliLength":0,"metaUid":"c64c7300-106"},"c64c7300-109":{"renderedLength":1683,"gzipLength":673,"brotliLength":0,"metaUid":"c64c7300-108"},"c64c7300-111":{"renderedLength":1327,"gzipLength":576,"brotliLength":0,"metaUid":"c64c7300-110"},"c64c7300-113":{"renderedLength":927,"gzipLength":522,"brotliLength":0,"metaUid":"c64c7300-112"},"c64c7300-115":{"renderedLength":976,"gzipLength":503,"brotliLength":0,"metaUid":"c64c7300-114"},"c64c7300-117":{"renderedLength":1445,"gzipLength":684,"brotliLength":0,"metaUid":"c64c7300-116"},"c64c7300-119":{"renderedLength":1371,"gzipLength":505,"brotliLength":0,"metaUid":"c64c7300-118"},"c64c7300-121":{"renderedLength":768,"gzipLength":452,"brotliLength":0,"metaUid":"c64c7300-120"},"c64c7300-123":{"renderedLength":1014,"gzipLength":533,"brotliLength":0,"metaUid":"c64c7300-122"},"c64c7300-125":{"renderedLength":1040,"gzipLength":503,"brotliLength":0,"metaUid":"c64c7300-124"},"c64c7300-127":{"renderedLength":1153,"gzipLength":596,"brotliLength":0,"metaUid":"c64c7300-126"},"c64c7300-129":{"renderedLength":1348,"gzipLength":539,"brotliLength":0,"metaUid":"c64c7300-128"},"c64c7300-131":{"renderedLength":699,"gzipLength":407,"brotliLength":0,"metaUid":"c64c7300-130"},"c64c7300-133":{"renderedLength":368,"gzipLength":256,"brotliLength":0,"metaUid":"c64c7300-132"},"c64c7300-135":{"renderedLength":3602,"gzipLength":1388,"brotliLength":0,"metaUid":"c64c7300-134"},"c64c7300-137":{"renderedLength":4170,"gzipLength":1355,"brotliLength":0,"metaUid":"c64c7300-136"},"c64c7300-139":{"renderedLength":4557,"gzipLength":1641,"brotliLength":0,"metaUid":"c64c7300-138"},"c64c7300-141":{"renderedLength":1975,"gzipLength":729,"brotliLength":0,"metaUid":"c64c7300-140"},"c64c7300-143":{"renderedLength":2261,"gzipLength":991,"brotliLength":0,"metaUid":"c64c7300-142"},"c64c7300-145":{"renderedLength":3913,"gzipLength":1478,"brotliLength":0,"metaUid":"c64c7300-144"}},"nodeMetas":{"c64c7300-0":{"id":"/src/cache.ts","moduleParts":{"cli.js":"c64c7300-1"},"imported":[],"importedBy":[{"uid":"c64c7300-136"},{"uid":"c64c7300-138"},{"uid":"c64c7300-142"}]},"c64c7300-2":{"id":"/src/config/ignore.ts","moduleParts":{"cli.js":"c64c7300-3"},"imported":[{"uid":"c64c7300-146"},{"uid":"c64c7300-147"}],"importedBy":[{"uid":"c64c7300-136"},{"uid":"c64c7300-142"}]},"c64c7300-4":{"id":"/src/config/loader.ts","moduleParts":{"cli.js":"c64c7300-5"},"imported":[{"uid":"c64c7300-146"},{"uid":"c64c7300-147"}],"importedBy":[{"uid":"c64c7300-136"}]},"c64c7300-6":{"id":"/src/utils/imports.ts","moduleParts":{"cli.js":"c64c7300-7"},"imported":[],"importedBy":[{"uid":"c64c7300-132"},{"uid":"c64c7300-18"},{"uid":"c64c7300-20"},{"uid":"c64c7300-22"},{"uid":"c64c7300-32"},{"uid":"c64c7300-42"},{"uid":"c64c7300-70"},{"uid":"c64c7300-98"},{"uid":"c64c7300-102"},{"uid":"c64c7300-108"},{"uid":"c64c7300-116"},{"uid":"c64c7300-122"},{"uid":"c64c7300-8"}]},"c64c7300-8":{"id":"/src/utils/ast.ts","moduleParts":{"cli.js":"c64c7300-9"},"imported":[{"uid":"c64c7300-6"}],"importedBy":[{"uid":"c64c7300-132"},{"uid":"c64c7300-10"},{"uid":"c64c7300-12"},{"uid":"c64c7300-14"},{"uid":"c64c7300-16"},{"uid":"c64c7300-18"},{"uid":"c64c7300-20"},{"uid":"c64c7300-22"},{"uid":"c64c7300-24"},{"uid":"c64c7300-26"},{"uid":"c64c7300-28"},{"uid":"c64c7300-30"},{"uid":"c64c7300-32"},{"uid":"c64c7300-34"},{"uid":"c64c7300-36"},{"uid":"c64c7300-38"},{"uid":"c64c7300-40"},{"uid":"c64c7300-42"},{"uid":"c64c7300-44"},{"uid":"c64c7300-46"},{"uid":"c64c7300-48"},{"uid":"c64c7300-50"},{"uid":"c64c7300-52"},{"uid":"c64c7300-54"},{"uid":"c64c7300-56"},{"uid":"c64c7300-58"},{"uid":"c64c7300-60"},{"uid":"c64c7300-62"},{"uid":"c64c7300-64"},{"uid":"c64c7300-66"},{"uid":"c64c7300-68"},{"uid":"c64c7300-70"},{"uid":"c64c7300-72"},{"uid":"c64c7300-74"},{"uid":"c64c7300-76"},{"uid":"c64c7300-78"},{"uid":"c64c7300-80"},{"uid":"c64c7300-82"},{"uid":"c64c7300-84"},{"uid":"c64c7300-86"},{"uid":"c64c7300-88"},{"uid":"c64c7300-90"},{"uid":"c64c7300-92"},{"uid":"c64c7300-94"},{"uid":"c64c7300-96"},{"uid":"c64c7300-98"},{"uid":"c64c7300-100"},{"uid":"c64c7300-102"},{"uid":"c64c7300-104"},{"uid":"c64c7300-106"},{"uid":"c64c7300-108"},{"uid":"c64c7300-110"},{"uid":"c64c7300-112"},{"uid":"c64c7300-114"},{"uid":"c64c7300-116"},{"uid":"c64c7300-118"},{"uid":"c64c7300-120"},{"uid":"c64c7300-122"},{"uid":"c64c7300-124"}]},"c64c7300-10":{"id":"/src/rules/accessibility/dialog-a11y.ts","moduleParts":{"cli.js":"c64c7300-11"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-12":{"id":"/src/rules/accessibility/overlay-a11y.ts","moduleParts":{"cli.js":"c64c7300-13"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-14":{"id":"/src/rules/accessibility/toast-a11y.ts","moduleParts":{"cli.js":"c64c7300-15"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-16":{"id":"/src/rules/architecture/dev-guard-warnings.ts","moduleParts":{"cli.js":"c64c7300-17"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-18":{"id":"/src/rules/architecture/no-circular-import.ts","moduleParts":{"cli.js":"c64c7300-19"},"imported":[{"uid":"c64c7300-8"},{"uid":"c64c7300-6"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-20":{"id":"/src/rules/architecture/no-cross-layer-import.ts","moduleParts":{"cli.js":"c64c7300-21"},"imported":[{"uid":"c64c7300-8"},{"uid":"c64c7300-6"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-22":{"id":"/src/rules/architecture/no-deep-import.ts","moduleParts":{"cli.js":"c64c7300-23"},"imported":[{"uid":"c64c7300-8"},{"uid":"c64c7300-6"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-24":{"id":"/src/rules/architecture/no-error-without-prefix.ts","moduleParts":{"cli.js":"c64c7300-25"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-26":{"id":"/src/rules/architecture/no-process-dev-gate.ts","moduleParts":{"cli.js":"c64c7300-27"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-28":{"id":"/src/rules/form/no-submit-without-validation.ts","moduleParts":{"cli.js":"c64c7300-29"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-30":{"id":"/src/rules/form/no-unregistered-field.ts","moduleParts":{"cli.js":"c64c7300-31"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-32":{"id":"/src/rules/form/prefer-field-array.ts","moduleParts":{"cli.js":"c64c7300-33"},"imported":[{"uid":"c64c7300-8"},{"uid":"c64c7300-6"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-34":{"id":"/src/rules/hooks/no-raw-addeventlistener.ts","moduleParts":{"cli.js":"c64c7300-35"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-36":{"id":"/src/rules/hooks/no-raw-localstorage.ts","moduleParts":{"cli.js":"c64c7300-37"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-38":{"id":"/src/rules/hooks/no-raw-setinterval.ts","moduleParts":{"cli.js":"c64c7300-39"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-40":{"id":"/src/rules/jsx/no-and-conditional.ts","moduleParts":{"cli.js":"c64c7300-41"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-42":{"id":"/src/rules/jsx/no-children-access.ts","moduleParts":{"cli.js":"c64c7300-43"},"imported":[{"uid":"c64c7300-8"},{"uid":"c64c7300-6"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-44":{"id":"/src/rules/jsx/no-classname.ts","moduleParts":{"cli.js":"c64c7300-45"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-46":{"id":"/src/rules/jsx/no-htmlfor.ts","moduleParts":{"cli.js":"c64c7300-47"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-48":{"id":"/src/rules/jsx/no-index-as-by.ts","moduleParts":{"cli.js":"c64c7300-49"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-50":{"id":"/src/rules/jsx/no-map-in-jsx.ts","moduleParts":{"cli.js":"c64c7300-51"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-52":{"id":"/src/rules/jsx/no-missing-for-by.ts","moduleParts":{"cli.js":"c64c7300-53"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-54":{"id":"/src/rules/jsx/no-onchange.ts","moduleParts":{"cli.js":"c64c7300-55"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-56":{"id":"/src/rules/jsx/no-props-destructure.ts","moduleParts":{"cli.js":"c64c7300-57"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-58":{"id":"/src/rules/jsx/no-ternary-conditional.ts","moduleParts":{"cli.js":"c64c7300-59"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-60":{"id":"/src/rules/jsx/use-by-not-key.ts","moduleParts":{"cli.js":"c64c7300-61"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-62":{"id":"/src/rules/lifecycle/no-dom-in-setup.ts","moduleParts":{"cli.js":"c64c7300-63"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-64":{"id":"/src/rules/lifecycle/no-effect-in-mount.ts","moduleParts":{"cli.js":"c64c7300-65"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-66":{"id":"/src/rules/lifecycle/no-missing-cleanup.ts","moduleParts":{"cli.js":"c64c7300-67"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-68":{"id":"/src/rules/lifecycle/no-mount-in-effect.ts","moduleParts":{"cli.js":"c64c7300-69"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-70":{"id":"/src/rules/performance/no-eager-import.ts","moduleParts":{"cli.js":"c64c7300-71"},"imported":[{"uid":"c64c7300-8"},{"uid":"c64c7300-6"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-72":{"id":"/src/rules/performance/no-effect-in-for.ts","moduleParts":{"cli.js":"c64c7300-73"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-74":{"id":"/src/rules/performance/no-large-for-without-by.ts","moduleParts":{"cli.js":"c64c7300-75"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-76":{"id":"/src/rules/performance/prefer-show-over-display.ts","moduleParts":{"cli.js":"c64c7300-77"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-78":{"id":"/src/rules/reactivity/no-bare-signal-in-jsx.ts","moduleParts":{"cli.js":"c64c7300-79"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-80":{"id":"/src/rules/reactivity/no-context-destructure.ts","moduleParts":{"cli.js":"c64c7300-81"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-82":{"id":"/src/rules/reactivity/no-effect-assignment.ts","moduleParts":{"cli.js":"c64c7300-83"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-84":{"id":"/src/rules/reactivity/no-nested-effect.ts","moduleParts":{"cli.js":"c64c7300-85"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-86":{"id":"/src/rules/reactivity/no-peek-in-tracked.ts","moduleParts":{"cli.js":"c64c7300-87"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-88":{"id":"/src/rules/reactivity/no-signal-in-loop.ts","moduleParts":{"cli.js":"c64c7300-89"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-90":{"id":"/src/rules/reactivity/no-signal-in-props.ts","moduleParts":{"cli.js":"c64c7300-91"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-92":{"id":"/src/rules/reactivity/no-signal-leak.ts","moduleParts":{"cli.js":"c64c7300-93"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-94":{"id":"/src/rules/reactivity/no-unbatched-updates.ts","moduleParts":{"cli.js":"c64c7300-95"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-96":{"id":"/src/rules/reactivity/prefer-computed.ts","moduleParts":{"cli.js":"c64c7300-97"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-98":{"id":"/src/rules/router/no-href-navigation.ts","moduleParts":{"cli.js":"c64c7300-99"},"imported":[{"uid":"c64c7300-8"},{"uid":"c64c7300-6"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-100":{"id":"/src/rules/router/no-imperative-navigate-in-render.ts","moduleParts":{"cli.js":"c64c7300-101"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-102":{"id":"/src/rules/router/no-missing-fallback.ts","moduleParts":{"cli.js":"c64c7300-103"},"imported":[{"uid":"c64c7300-8"},{"uid":"c64c7300-6"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-104":{"id":"/src/rules/router/prefer-use-is-active.ts","moduleParts":{"cli.js":"c64c7300-105"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-106":{"id":"/src/rules/ssr/no-mismatch-risk.ts","moduleParts":{"cli.js":"c64c7300-107"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-108":{"id":"/src/rules/ssr/no-window-in-ssr.ts","moduleParts":{"cli.js":"c64c7300-109"},"imported":[{"uid":"c64c7300-8"},{"uid":"c64c7300-6"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-110":{"id":"/src/rules/ssr/prefer-request-context.ts","moduleParts":{"cli.js":"c64c7300-111"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-112":{"id":"/src/rules/store/no-duplicate-store-id.ts","moduleParts":{"cli.js":"c64c7300-113"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-114":{"id":"/src/rules/store/no-mutate-store-state.ts","moduleParts":{"cli.js":"c64c7300-115"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-116":{"id":"/src/rules/store/no-store-outside-provider.ts","moduleParts":{"cli.js":"c64c7300-117"},"imported":[{"uid":"c64c7300-8"},{"uid":"c64c7300-6"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-118":{"id":"/src/rules/styling/no-dynamic-styled.ts","moduleParts":{"cli.js":"c64c7300-119"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-120":{"id":"/src/rules/styling/no-inline-style-object.ts","moduleParts":{"cli.js":"c64c7300-121"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-122":{"id":"/src/rules/styling/no-theme-outside-provider.ts","moduleParts":{"cli.js":"c64c7300-123"},"imported":[{"uid":"c64c7300-8"},{"uid":"c64c7300-6"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-124":{"id":"/src/rules/styling/prefer-cx.ts","moduleParts":{"cli.js":"c64c7300-125"},"imported":[{"uid":"c64c7300-8"}],"importedBy":[{"uid":"c64c7300-126"}]},"c64c7300-126":{"id":"/src/rules/index.ts","moduleParts":{"cli.js":"c64c7300-127"},"imported":[{"uid":"c64c7300-10"},{"uid":"c64c7300-12"},{"uid":"c64c7300-14"},{"uid":"c64c7300-16"},{"uid":"c64c7300-18"},{"uid":"c64c7300-20"},{"uid":"c64c7300-22"},{"uid":"c64c7300-24"},{"uid":"c64c7300-26"},{"uid":"c64c7300-28"},{"uid":"c64c7300-30"},{"uid":"c64c7300-32"},{"uid":"c64c7300-34"},{"uid":"c64c7300-36"},{"uid":"c64c7300-38"},{"uid":"c64c7300-40"},{"uid":"c64c7300-42"},{"uid":"c64c7300-44"},{"uid":"c64c7300-46"},{"uid":"c64c7300-48"},{"uid":"c64c7300-50"},{"uid":"c64c7300-52"},{"uid":"c64c7300-54"},{"uid":"c64c7300-56"},{"uid":"c64c7300-58"},{"uid":"c64c7300-60"},{"uid":"c64c7300-62"},{"uid":"c64c7300-64"},{"uid":"c64c7300-66"},{"uid":"c64c7300-68"},{"uid":"c64c7300-70"},{"uid":"c64c7300-72"},{"uid":"c64c7300-74"},{"uid":"c64c7300-76"},{"uid":"c64c7300-78"},{"uid":"c64c7300-80"},{"uid":"c64c7300-82"},{"uid":"c64c7300-84"},{"uid":"c64c7300-86"},{"uid":"c64c7300-88"},{"uid":"c64c7300-90"},{"uid":"c64c7300-92"},{"uid":"c64c7300-94"},{"uid":"c64c7300-96"},{"uid":"c64c7300-98"},{"uid":"c64c7300-100"},{"uid":"c64c7300-102"},{"uid":"c64c7300-104"},{"uid":"c64c7300-106"},{"uid":"c64c7300-108"},{"uid":"c64c7300-110"},{"uid":"c64c7300-112"},{"uid":"c64c7300-114"},{"uid":"c64c7300-116"},{"uid":"c64c7300-118"},{"uid":"c64c7300-120"},{"uid":"c64c7300-122"},{"uid":"c64c7300-124"}],"importedBy":[{"uid":"c64c7300-136"},{"uid":"c64c7300-138"},{"uid":"c64c7300-142"},{"uid":"c64c7300-128"}]},"c64c7300-128":{"id":"/src/config/presets.ts","moduleParts":{"cli.js":"c64c7300-129"},"imported":[{"uid":"c64c7300-126"}],"importedBy":[{"uid":"c64c7300-136"},{"uid":"c64c7300-138"},{"uid":"c64c7300-142"}]},"c64c7300-130":{"id":"/src/utils/source.ts","moduleParts":{"cli.js":"c64c7300-131"},"imported":[],"importedBy":[{"uid":"c64c7300-134"},{"uid":"c64c7300-132"}]},"c64c7300-132":{"id":"/src/utils/index.ts","moduleParts":{"cli.js":"c64c7300-133"},"imported":[{"uid":"c64c7300-8"},{"uid":"c64c7300-6"},{"uid":"c64c7300-130"}],"importedBy":[{"uid":"c64c7300-136"},{"uid":"c64c7300-142"},{"uid":"c64c7300-134"}]},"c64c7300-134":{"id":"/src/runner.ts","moduleParts":{"cli.js":"c64c7300-135"},"imported":[{"uid":"c64c7300-148"},{"uid":"c64c7300-132"},{"uid":"c64c7300-130"}],"importedBy":[{"uid":"c64c7300-136"},{"uid":"c64c7300-138"},{"uid":"c64c7300-142"}]},"c64c7300-136":{"id":"/src/lint.ts","moduleParts":{"cli.js":"c64c7300-137"},"imported":[{"uid":"c64c7300-146"},{"uid":"c64c7300-147"},{"uid":"c64c7300-0"},{"uid":"c64c7300-2"},{"uid":"c64c7300-4"},{"uid":"c64c7300-128"},{"uid":"c64c7300-126"},{"uid":"c64c7300-134"},{"uid":"c64c7300-132"}],"importedBy":[{"uid":"c64c7300-144"}]},"c64c7300-138":{"id":"/src/lsp/index.ts","moduleParts":{"cli.js":"c64c7300-139"},"imported":[{"uid":"c64c7300-0"},{"uid":"c64c7300-128"},{"uid":"c64c7300-126"},{"uid":"c64c7300-134"}],"importedBy":[{"uid":"c64c7300-144"}]},"c64c7300-140":{"id":"/src/reporter.ts","moduleParts":{"cli.js":"c64c7300-141"},"imported":[],"importedBy":[{"uid":"c64c7300-144"},{"uid":"c64c7300-142"}]},"c64c7300-142":{"id":"/src/watcher.ts","moduleParts":{"cli.js":"c64c7300-143"},"imported":[{"uid":"c64c7300-146"},{"uid":"c64c7300-147"},{"uid":"c64c7300-0"},{"uid":"c64c7300-2"},{"uid":"c64c7300-128"},{"uid":"c64c7300-140"},{"uid":"c64c7300-126"},{"uid":"c64c7300-134"},{"uid":"c64c7300-132"}],"importedBy":[{"uid":"c64c7300-144"}]},"c64c7300-144":{"id":"/src/cli.ts","moduleParts":{"cli.js":"c64c7300-145"},"imported":[{"uid":"c64c7300-136"},{"uid":"c64c7300-138"},{"uid":"c64c7300-140"},{"uid":"c64c7300-142"}],"importedBy":[],"isEntry":true},"c64c7300-146":{"id":"node:fs","moduleParts":{},"imported":[],"importedBy":[{"uid":"c64c7300-136"},{"uid":"c64c7300-142"},{"uid":"c64c7300-2"},{"uid":"c64c7300-4"}]},"c64c7300-147":{"id":"node:path","moduleParts":{},"imported":[],"importedBy":[{"uid":"c64c7300-136"},{"uid":"c64c7300-142"},{"uid":"c64c7300-2"},{"uid":"c64c7300-4"}]},"c64c7300-148":{"id":"oxc-parser","moduleParts":{},"imported":[],"importedBy":[{"uid":"c64c7300-134"}]}},"env":{"rollup":"4.23.0"},"options":{"gzip":true,"brotli":false,"sourcemap":false}};
|
|
5389
|
+
const data = {"version":2,"tree":{"name":"root","children":[{"name":"cli.js","children":[{"name":"\u0000rolldown/runtime.js","uid":"899472fd-1"},{"name":"src","children":[{"uid":"899472fd-3","name":"cache.ts"},{"name":"config","children":[{"uid":"899472fd-5","name":"ignore.ts"},{"uid":"899472fd-7","name":"loader.ts"},{"uid":"899472fd-139","name":"presets.ts"}]},{"name":"utils","children":[{"uid":"899472fd-9","name":"imports.ts"},{"uid":"899472fd-11","name":"ast.ts"},{"uid":"899472fd-19","name":"exempt-paths.ts"},{"uid":"899472fd-21","name":"file-roles.ts"},{"uid":"899472fd-45","name":"component-context.ts"},{"uid":"899472fd-141","name":"source.ts"},{"uid":"899472fd-143","name":"index.ts"},{"uid":"899472fd-145","name":"validate-options.ts"}]},{"name":"rules","children":[{"name":"accessibility","children":[{"uid":"899472fd-13","name":"dialog-a11y.ts"},{"uid":"899472fd-15","name":"overlay-a11y.ts"},{"uid":"899472fd-17","name":"toast-a11y.ts"}]},{"name":"architecture","children":[{"uid":"899472fd-23","name":"dev-guard-warnings.ts"},{"uid":"899472fd-25","name":"no-circular-import.ts"},{"uid":"899472fd-27","name":"no-cross-layer-import.ts"},{"uid":"899472fd-29","name":"no-deep-import.ts"},{"uid":"899472fd-31","name":"no-error-without-prefix.ts"},{"uid":"899472fd-33","name":"no-process-dev-gate.ts"},{"uid":"899472fd-35","name":"require-browser-smoke-test.ts"}]},{"name":"form","children":[{"uid":"899472fd-37","name":"no-submit-without-validation.ts"},{"uid":"899472fd-39","name":"no-unregistered-field.ts"},{"uid":"899472fd-41","name":"prefer-field-array.ts"}]},{"name":"hooks","children":[{"uid":"899472fd-43","name":"no-raw-addeventlistener.ts"},{"uid":"899472fd-47","name":"no-raw-localstorage.ts"},{"uid":"899472fd-49","name":"no-raw-setinterval.ts"}]},{"name":"jsx","children":[{"uid":"899472fd-51","name":"no-and-conditional.ts"},{"uid":"899472fd-53","name":"no-children-access.ts"},{"uid":"899472fd-55","name":"no-classname.ts"},{"uid":"899472fd-57","name":"no-htmlfor.ts"},{"uid":"899472fd-59","name":"no-index-as-by.ts"},{"uid":"899472fd-61","name":"no-map-in-jsx.ts"},{"uid":"899472fd-63","name":"no-missing-for-by.ts"},{"uid":"899472fd-65","name":"no-onchange.ts"},{"uid":"899472fd-67","name":"no-props-destructure.ts"},{"uid":"899472fd-69","name":"no-ternary-conditional.ts"},{"uid":"899472fd-71","name":"use-by-not-key.ts"}]},{"name":"lifecycle","children":[{"uid":"899472fd-73","name":"no-dom-in-setup.ts"},{"uid":"899472fd-75","name":"no-effect-in-mount.ts"},{"uid":"899472fd-77","name":"no-missing-cleanup.ts"},{"uid":"899472fd-79","name":"no-mount-in-effect.ts"}]},{"name":"performance","children":[{"uid":"899472fd-81","name":"no-eager-import.ts"},{"uid":"899472fd-83","name":"no-effect-in-for.ts"},{"uid":"899472fd-85","name":"no-large-for-without-by.ts"},{"uid":"899472fd-87","name":"prefer-show-over-display.ts"}]},{"name":"reactivity","children":[{"uid":"899472fd-89","name":"no-bare-signal-in-jsx.ts"},{"uid":"899472fd-91","name":"no-context-destructure.ts"},{"uid":"899472fd-93","name":"no-effect-assignment.ts"},{"uid":"899472fd-95","name":"no-nested-effect.ts"},{"uid":"899472fd-97","name":"no-peek-in-tracked.ts"},{"uid":"899472fd-99","name":"no-signal-in-loop.ts"},{"uid":"899472fd-101","name":"no-signal-in-props.ts"},{"uid":"899472fd-103","name":"no-signal-leak.ts"},{"uid":"899472fd-105","name":"no-unbatched-updates.ts"},{"uid":"899472fd-107","name":"prefer-computed.ts"}]},{"name":"router","children":[{"uid":"899472fd-109","name":"no-href-navigation.ts"},{"uid":"899472fd-111","name":"no-imperative-navigate-in-render.ts"},{"uid":"899472fd-113","name":"no-missing-fallback.ts"},{"uid":"899472fd-115","name":"prefer-use-is-active.ts"}]},{"name":"ssr","children":[{"uid":"899472fd-117","name":"no-mismatch-risk.ts"},{"uid":"899472fd-119","name":"no-window-in-ssr.ts"},{"uid":"899472fd-121","name":"prefer-request-context.ts"}]},{"name":"store","children":[{"uid":"899472fd-123","name":"no-duplicate-store-id.ts"},{"uid":"899472fd-125","name":"no-mutate-store-state.ts"},{"uid":"899472fd-127","name":"no-store-outside-provider.ts"}]},{"name":"styling","children":[{"uid":"899472fd-129","name":"no-dynamic-styled.ts"},{"uid":"899472fd-131","name":"no-inline-style-object.ts"},{"uid":"899472fd-133","name":"no-theme-outside-provider.ts"},{"uid":"899472fd-135","name":"prefer-cx.ts"}]},{"uid":"899472fd-137","name":"index.ts"}]},{"uid":"899472fd-147","name":"runner.ts"},{"uid":"899472fd-149","name":"lint.ts"},{"name":"lsp/index.ts","uid":"899472fd-151"},{"uid":"899472fd-153","name":"reporter.ts"},{"uid":"899472fd-155","name":"watcher.ts"},{"uid":"899472fd-157","name":"cli.ts"}]}]}],"isRoot":true},"nodeParts":{"899472fd-1":{"renderedLength":545,"gzipLength":335,"brotliLength":0,"metaUid":"899472fd-0"},"899472fd-3":{"renderedLength":1035,"gzipLength":568,"brotliLength":0,"metaUid":"899472fd-2"},"899472fd-5":{"renderedLength":3011,"gzipLength":1239,"brotliLength":0,"metaUid":"899472fd-4"},"899472fd-7":{"renderedLength":1626,"gzipLength":713,"brotliLength":0,"metaUid":"899472fd-6"},"899472fd-9":{"renderedLength":1514,"gzipLength":642,"brotliLength":0,"metaUid":"899472fd-8"},"899472fd-11":{"renderedLength":2849,"gzipLength":776,"brotliLength":0,"metaUid":"899472fd-10"},"899472fd-13":{"renderedLength":775,"gzipLength":445,"brotliLength":0,"metaUid":"899472fd-12"},"899472fd-15":{"renderedLength":864,"gzipLength":470,"brotliLength":0,"metaUid":"899472fd-14"},"899472fd-17":{"renderedLength":1014,"gzipLength":554,"brotliLength":0,"metaUid":"899472fd-16"},"899472fd-19":{"renderedLength":353,"gzipLength":239,"brotliLength":0,"metaUid":"899472fd-18"},"899472fd-21":{"renderedLength":1151,"gzipLength":586,"brotliLength":0,"metaUid":"899472fd-20"},"899472fd-23":{"renderedLength":5150,"gzipLength":1561,"brotliLength":0,"metaUid":"899472fd-22"},"899472fd-25":{"renderedLength":1456,"gzipLength":691,"brotliLength":0,"metaUid":"899472fd-24"},"899472fd-27":{"renderedLength":1688,"gzipLength":687,"brotliLength":0,"metaUid":"899472fd-26"},"899472fd-29":{"renderedLength":710,"gzipLength":443,"brotliLength":0,"metaUid":"899472fd-28"},"899472fd-31":{"renderedLength":2127,"gzipLength":819,"brotliLength":0,"metaUid":"899472fd-30"},"899472fd-33":{"renderedLength":5106,"gzipLength":1760,"brotliLength":0,"metaUid":"899472fd-32"},"899472fd-35":{"renderedLength":6984,"gzipLength":2831,"brotliLength":0,"metaUid":"899472fd-34"},"899472fd-37":{"renderedLength":1234,"gzipLength":612,"brotliLength":0,"metaUid":"899472fd-36"},"899472fd-39":{"renderedLength":1310,"gzipLength":636,"brotliLength":0,"metaUid":"899472fd-38"},"899472fd-41":{"renderedLength":905,"gzipLength":500,"brotliLength":0,"metaUid":"899472fd-40"},"899472fd-43":{"renderedLength":819,"gzipLength":465,"brotliLength":0,"metaUid":"899472fd-42"},"899472fd-45":{"renderedLength":1030,"gzipLength":426,"brotliLength":0,"metaUid":"899472fd-44"},"899472fd-47":{"renderedLength":1131,"gzipLength":606,"brotliLength":0,"metaUid":"899472fd-46"},"899472fd-49":{"renderedLength":1115,"gzipLength":600,"brotliLength":0,"metaUid":"899472fd-48"},"899472fd-51":{"renderedLength":718,"gzipLength":404,"brotliLength":0,"metaUid":"899472fd-50"},"899472fd-53":{"renderedLength":967,"gzipLength":507,"brotliLength":0,"metaUid":"899472fd-52"},"899472fd-55":{"renderedLength":680,"gzipLength":373,"brotliLength":0,"metaUid":"899472fd-54"},"899472fd-57":{"renderedLength":662,"gzipLength":371,"brotliLength":0,"metaUid":"899472fd-56"},"899472fd-59":{"renderedLength":1641,"gzipLength":677,"brotliLength":0,"metaUid":"899472fd-58"},"899472fd-61":{"renderedLength":839,"gzipLength":451,"brotliLength":0,"metaUid":"899472fd-60"},"899472fd-63":{"renderedLength":617,"gzipLength":408,"brotliLength":0,"metaUid":"899472fd-62"},"899472fd-65":{"renderedLength":1068,"gzipLength":555,"brotliLength":0,"metaUid":"899472fd-64"},"899472fd-67":{"renderedLength":2970,"gzipLength":1092,"brotliLength":0,"metaUid":"899472fd-66"},"899472fd-69":{"renderedLength":748,"gzipLength":411,"brotliLength":0,"metaUid":"899472fd-68"},"899472fd-71":{"renderedLength":825,"gzipLength":454,"brotliLength":0,"metaUid":"899472fd-70"},"899472fd-73":{"renderedLength":2929,"gzipLength":1090,"brotliLength":0,"metaUid":"899472fd-72"},"899472fd-75":{"renderedLength":780,"gzipLength":414,"brotliLength":0,"metaUid":"899472fd-74"},"899472fd-77":{"renderedLength":1844,"gzipLength":792,"brotliLength":0,"metaUid":"899472fd-76"},"899472fd-79":{"renderedLength":707,"gzipLength":396,"brotliLength":0,"metaUid":"899472fd-78"},"899472fd-81":{"renderedLength":636,"gzipLength":427,"brotliLength":0,"metaUid":"899472fd-80"},"899472fd-83":{"renderedLength":947,"gzipLength":492,"brotliLength":0,"metaUid":"899472fd-82"},"899472fd-85":{"renderedLength":696,"gzipLength":431,"brotliLength":0,"metaUid":"899472fd-84"},"899472fd-87":{"renderedLength":1232,"gzipLength":600,"brotliLength":0,"metaUid":"899472fd-86"},"899472fd-89":{"renderedLength":1354,"gzipLength":683,"brotliLength":0,"metaUid":"899472fd-88"},"899472fd-91":{"renderedLength":1161,"gzipLength":580,"brotliLength":0,"metaUid":"899472fd-90"},"899472fd-93":{"renderedLength":1450,"gzipLength":617,"brotliLength":0,"metaUid":"899472fd-92"},"899472fd-95":{"renderedLength":686,"gzipLength":396,"brotliLength":0,"metaUid":"899472fd-94"},"899472fd-97":{"renderedLength":821,"gzipLength":440,"brotliLength":0,"metaUid":"899472fd-96"},"899472fd-99":{"renderedLength":1217,"gzipLength":514,"brotliLength":0,"metaUid":"899472fd-98"},"899472fd-101":{"renderedLength":1620,"gzipLength":821,"brotliLength":0,"metaUid":"899472fd-100"},"899472fd-103":{"renderedLength":1348,"gzipLength":652,"brotliLength":0,"metaUid":"899472fd-102"},"899472fd-105":{"renderedLength":1751,"gzipLength":718,"brotliLength":0,"metaUid":"899472fd-104"},"899472fd-107":{"renderedLength":1280,"gzipLength":561,"brotliLength":0,"metaUid":"899472fd-106"},"899472fd-109":{"renderedLength":1247,"gzipLength":642,"brotliLength":0,"metaUid":"899472fd-108"},"899472fd-111":{"renderedLength":4152,"gzipLength":1167,"brotliLength":0,"metaUid":"899472fd-110"},"899472fd-113":{"renderedLength":2081,"gzipLength":873,"brotliLength":0,"metaUid":"899472fd-112"},"899472fd-115":{"renderedLength":1126,"gzipLength":551,"brotliLength":0,"metaUid":"899472fd-114"},"899472fd-117":{"renderedLength":1062,"gzipLength":556,"brotliLength":0,"metaUid":"899472fd-116"},"899472fd-119":{"renderedLength":10576,"gzipLength":2460,"brotliLength":0,"metaUid":"899472fd-118"},"899472fd-121":{"renderedLength":1327,"gzipLength":576,"brotliLength":0,"metaUid":"899472fd-120"},"899472fd-123":{"renderedLength":979,"gzipLength":542,"brotliLength":0,"metaUid":"899472fd-122"},"899472fd-125":{"renderedLength":1122,"gzipLength":572,"brotliLength":0,"metaUid":"899472fd-124"},"899472fd-127":{"renderedLength":1445,"gzipLength":684,"brotliLength":0,"metaUid":"899472fd-126"},"899472fd-129":{"renderedLength":1104,"gzipLength":493,"brotliLength":0,"metaUid":"899472fd-128"},"899472fd-131":{"renderedLength":768,"gzipLength":452,"brotliLength":0,"metaUid":"899472fd-130"},"899472fd-133":{"renderedLength":1808,"gzipLength":767,"brotliLength":0,"metaUid":"899472fd-132"},"899472fd-135":{"renderedLength":1040,"gzipLength":503,"brotliLength":0,"metaUid":"899472fd-134"},"899472fd-137":{"renderedLength":1179,"gzipLength":613,"brotliLength":0,"metaUid":"899472fd-136"},"899472fd-139":{"renderedLength":1564,"gzipLength":613,"brotliLength":0,"metaUid":"899472fd-138"},"899472fd-141":{"renderedLength":699,"gzipLength":407,"brotliLength":0,"metaUid":"899472fd-140"},"899472fd-143":{"renderedLength":368,"gzipLength":256,"brotliLength":0,"metaUid":"899472fd-142"},"899472fd-145":{"renderedLength":1209,"gzipLength":560,"brotliLength":0,"metaUid":"899472fd-144"},"899472fd-147":{"renderedLength":4913,"gzipLength":1818,"brotliLength":0,"metaUid":"899472fd-146"},"899472fd-149":{"renderedLength":4658,"gzipLength":1481,"brotliLength":0,"metaUid":"899472fd-148"},"899472fd-151":{"renderedLength":4555,"gzipLength":1643,"brotliLength":0,"metaUid":"899472fd-150"},"899472fd-153":{"renderedLength":1975,"gzipLength":729,"brotliLength":0,"metaUid":"899472fd-152"},"899472fd-155":{"renderedLength":2740,"gzipLength":1117,"brotliLength":0,"metaUid":"899472fd-154"},"899472fd-157":{"renderedLength":4976,"gzipLength":1781,"brotliLength":0,"metaUid":"899472fd-156"}},"nodeMetas":{"899472fd-0":{"id":"\u0000rolldown/runtime.js","moduleParts":{"cli.js":"899472fd-1"},"imported":[],"importedBy":[]},"899472fd-2":{"id":"/src/cache.ts","moduleParts":{"cli.js":"899472fd-3"},"imported":[],"importedBy":[{"uid":"899472fd-148"},{"uid":"899472fd-150"},{"uid":"899472fd-154"}]},"899472fd-4":{"id":"/src/config/ignore.ts","moduleParts":{"cli.js":"899472fd-5"},"imported":[{"uid":"899472fd-158"},{"uid":"899472fd-159"}],"importedBy":[{"uid":"899472fd-148"},{"uid":"899472fd-154"}]},"899472fd-6":{"id":"/src/config/loader.ts","moduleParts":{"cli.js":"899472fd-7"},"imported":[{"uid":"899472fd-158"},{"uid":"899472fd-159"}],"importedBy":[{"uid":"899472fd-148"}]},"899472fd-8":{"id":"/src/utils/imports.ts","moduleParts":{"cli.js":"899472fd-9"},"imported":[],"importedBy":[{"uid":"899472fd-142"},{"uid":"899472fd-24"},{"uid":"899472fd-26"},{"uid":"899472fd-28"},{"uid":"899472fd-40"},{"uid":"899472fd-52"},{"uid":"899472fd-80"},{"uid":"899472fd-108"},{"uid":"899472fd-112"},{"uid":"899472fd-118"},{"uid":"899472fd-126"},{"uid":"899472fd-132"},{"uid":"899472fd-10"}]},"899472fd-10":{"id":"/src/utils/ast.ts","moduleParts":{"cli.js":"899472fd-11"},"imported":[{"uid":"899472fd-8"}],"importedBy":[{"uid":"899472fd-142"},{"uid":"899472fd-12"},{"uid":"899472fd-14"},{"uid":"899472fd-16"},{"uid":"899472fd-22"},{"uid":"899472fd-24"},{"uid":"899472fd-26"},{"uid":"899472fd-28"},{"uid":"899472fd-30"},{"uid":"899472fd-32"},{"uid":"899472fd-36"},{"uid":"899472fd-38"},{"uid":"899472fd-40"},{"uid":"899472fd-42"},{"uid":"899472fd-46"},{"uid":"899472fd-48"},{"uid":"899472fd-50"},{"uid":"899472fd-52"},{"uid":"899472fd-54"},{"uid":"899472fd-56"},{"uid":"899472fd-58"},{"uid":"899472fd-60"},{"uid":"899472fd-62"},{"uid":"899472fd-64"},{"uid":"899472fd-66"},{"uid":"899472fd-68"},{"uid":"899472fd-70"},{"uid":"899472fd-72"},{"uid":"899472fd-74"},{"uid":"899472fd-76"},{"uid":"899472fd-78"},{"uid":"899472fd-80"},{"uid":"899472fd-82"},{"uid":"899472fd-84"},{"uid":"899472fd-86"},{"uid":"899472fd-88"},{"uid":"899472fd-90"},{"uid":"899472fd-92"},{"uid":"899472fd-94"},{"uid":"899472fd-96"},{"uid":"899472fd-98"},{"uid":"899472fd-100"},{"uid":"899472fd-102"},{"uid":"899472fd-104"},{"uid":"899472fd-106"},{"uid":"899472fd-108"},{"uid":"899472fd-110"},{"uid":"899472fd-112"},{"uid":"899472fd-114"},{"uid":"899472fd-116"},{"uid":"899472fd-118"},{"uid":"899472fd-120"},{"uid":"899472fd-122"},{"uid":"899472fd-124"},{"uid":"899472fd-126"},{"uid":"899472fd-128"},{"uid":"899472fd-130"},{"uid":"899472fd-132"},{"uid":"899472fd-134"}]},"899472fd-12":{"id":"/src/rules/accessibility/dialog-a11y.ts","moduleParts":{"cli.js":"899472fd-13"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-14":{"id":"/src/rules/accessibility/overlay-a11y.ts","moduleParts":{"cli.js":"899472fd-15"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-16":{"id":"/src/rules/accessibility/toast-a11y.ts","moduleParts":{"cli.js":"899472fd-17"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-18":{"id":"/src/utils/exempt-paths.ts","moduleParts":{"cli.js":"899472fd-19"},"imported":[],"importedBy":[{"uid":"899472fd-22"},{"uid":"899472fd-32"},{"uid":"899472fd-34"},{"uid":"899472fd-42"},{"uid":"899472fd-48"},{"uid":"899472fd-104"},{"uid":"899472fd-118"}]},"899472fd-20":{"id":"/src/utils/file-roles.ts","moduleParts":{"cli.js":"899472fd-21"},"imported":[],"importedBy":[{"uid":"899472fd-22"},{"uid":"899472fd-24"},{"uid":"899472fd-32"},{"uid":"899472fd-36"},{"uid":"899472fd-38"},{"uid":"899472fd-122"}]},"899472fd-22":{"id":"/src/rules/architecture/dev-guard-warnings.ts","moduleParts":{"cli.js":"899472fd-23"},"imported":[{"uid":"899472fd-10"},{"uid":"899472fd-18"},{"uid":"899472fd-20"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-24":{"id":"/src/rules/architecture/no-circular-import.ts","moduleParts":{"cli.js":"899472fd-25"},"imported":[{"uid":"899472fd-10"},{"uid":"899472fd-8"},{"uid":"899472fd-20"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-26":{"id":"/src/rules/architecture/no-cross-layer-import.ts","moduleParts":{"cli.js":"899472fd-27"},"imported":[{"uid":"899472fd-10"},{"uid":"899472fd-8"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-28":{"id":"/src/rules/architecture/no-deep-import.ts","moduleParts":{"cli.js":"899472fd-29"},"imported":[{"uid":"899472fd-10"},{"uid":"899472fd-8"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-30":{"id":"/src/rules/architecture/no-error-without-prefix.ts","moduleParts":{"cli.js":"899472fd-31"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-32":{"id":"/src/rules/architecture/no-process-dev-gate.ts","moduleParts":{"cli.js":"899472fd-33"},"imported":[{"uid":"899472fd-10"},{"uid":"899472fd-18"},{"uid":"899472fd-20"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-34":{"id":"/src/rules/architecture/require-browser-smoke-test.ts","moduleParts":{"cli.js":"899472fd-35"},"imported":[{"uid":"899472fd-158"},{"uid":"899472fd-159"},{"uid":"899472fd-18"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-36":{"id":"/src/rules/form/no-submit-without-validation.ts","moduleParts":{"cli.js":"899472fd-37"},"imported":[{"uid":"899472fd-10"},{"uid":"899472fd-20"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-38":{"id":"/src/rules/form/no-unregistered-field.ts","moduleParts":{"cli.js":"899472fd-39"},"imported":[{"uid":"899472fd-10"},{"uid":"899472fd-20"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-40":{"id":"/src/rules/form/prefer-field-array.ts","moduleParts":{"cli.js":"899472fd-41"},"imported":[{"uid":"899472fd-10"},{"uid":"899472fd-8"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-42":{"id":"/src/rules/hooks/no-raw-addeventlistener.ts","moduleParts":{"cli.js":"899472fd-43"},"imported":[{"uid":"899472fd-10"},{"uid":"899472fd-18"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-44":{"id":"/src/utils/component-context.ts","moduleParts":{"cli.js":"899472fd-45"},"imported":[],"importedBy":[{"uid":"899472fd-46"},{"uid":"899472fd-48"},{"uid":"899472fd-124"},{"uid":"899472fd-128"}]},"899472fd-46":{"id":"/src/rules/hooks/no-raw-localstorage.ts","moduleParts":{"cli.js":"899472fd-47"},"imported":[{"uid":"899472fd-10"},{"uid":"899472fd-44"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-48":{"id":"/src/rules/hooks/no-raw-setinterval.ts","moduleParts":{"cli.js":"899472fd-49"},"imported":[{"uid":"899472fd-18"},{"uid":"899472fd-44"},{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-50":{"id":"/src/rules/jsx/no-and-conditional.ts","moduleParts":{"cli.js":"899472fd-51"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-52":{"id":"/src/rules/jsx/no-children-access.ts","moduleParts":{"cli.js":"899472fd-53"},"imported":[{"uid":"899472fd-10"},{"uid":"899472fd-8"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-54":{"id":"/src/rules/jsx/no-classname.ts","moduleParts":{"cli.js":"899472fd-55"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-56":{"id":"/src/rules/jsx/no-htmlfor.ts","moduleParts":{"cli.js":"899472fd-57"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-58":{"id":"/src/rules/jsx/no-index-as-by.ts","moduleParts":{"cli.js":"899472fd-59"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-60":{"id":"/src/rules/jsx/no-map-in-jsx.ts","moduleParts":{"cli.js":"899472fd-61"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-62":{"id":"/src/rules/jsx/no-missing-for-by.ts","moduleParts":{"cli.js":"899472fd-63"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-64":{"id":"/src/rules/jsx/no-onchange.ts","moduleParts":{"cli.js":"899472fd-65"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-66":{"id":"/src/rules/jsx/no-props-destructure.ts","moduleParts":{"cli.js":"899472fd-67"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-68":{"id":"/src/rules/jsx/no-ternary-conditional.ts","moduleParts":{"cli.js":"899472fd-69"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-70":{"id":"/src/rules/jsx/use-by-not-key.ts","moduleParts":{"cli.js":"899472fd-71"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-72":{"id":"/src/rules/lifecycle/no-dom-in-setup.ts","moduleParts":{"cli.js":"899472fd-73"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-74":{"id":"/src/rules/lifecycle/no-effect-in-mount.ts","moduleParts":{"cli.js":"899472fd-75"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-76":{"id":"/src/rules/lifecycle/no-missing-cleanup.ts","moduleParts":{"cli.js":"899472fd-77"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-78":{"id":"/src/rules/lifecycle/no-mount-in-effect.ts","moduleParts":{"cli.js":"899472fd-79"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-80":{"id":"/src/rules/performance/no-eager-import.ts","moduleParts":{"cli.js":"899472fd-81"},"imported":[{"uid":"899472fd-10"},{"uid":"899472fd-8"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-82":{"id":"/src/rules/performance/no-effect-in-for.ts","moduleParts":{"cli.js":"899472fd-83"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-84":{"id":"/src/rules/performance/no-large-for-without-by.ts","moduleParts":{"cli.js":"899472fd-85"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-86":{"id":"/src/rules/performance/prefer-show-over-display.ts","moduleParts":{"cli.js":"899472fd-87"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-88":{"id":"/src/rules/reactivity/no-bare-signal-in-jsx.ts","moduleParts":{"cli.js":"899472fd-89"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-90":{"id":"/src/rules/reactivity/no-context-destructure.ts","moduleParts":{"cli.js":"899472fd-91"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-92":{"id":"/src/rules/reactivity/no-effect-assignment.ts","moduleParts":{"cli.js":"899472fd-93"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-94":{"id":"/src/rules/reactivity/no-nested-effect.ts","moduleParts":{"cli.js":"899472fd-95"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-96":{"id":"/src/rules/reactivity/no-peek-in-tracked.ts","moduleParts":{"cli.js":"899472fd-97"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-98":{"id":"/src/rules/reactivity/no-signal-in-loop.ts","moduleParts":{"cli.js":"899472fd-99"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-100":{"id":"/src/rules/reactivity/no-signal-in-props.ts","moduleParts":{"cli.js":"899472fd-101"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-102":{"id":"/src/rules/reactivity/no-signal-leak.ts","moduleParts":{"cli.js":"899472fd-103"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-104":{"id":"/src/rules/reactivity/no-unbatched-updates.ts","moduleParts":{"cli.js":"899472fd-105"},"imported":[{"uid":"899472fd-10"},{"uid":"899472fd-18"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-106":{"id":"/src/rules/reactivity/prefer-computed.ts","moduleParts":{"cli.js":"899472fd-107"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-108":{"id":"/src/rules/router/no-href-navigation.ts","moduleParts":{"cli.js":"899472fd-109"},"imported":[{"uid":"899472fd-10"},{"uid":"899472fd-8"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-110":{"id":"/src/rules/router/no-imperative-navigate-in-render.ts","moduleParts":{"cli.js":"899472fd-111"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-112":{"id":"/src/rules/router/no-missing-fallback.ts","moduleParts":{"cli.js":"899472fd-113"},"imported":[{"uid":"899472fd-10"},{"uid":"899472fd-8"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-114":{"id":"/src/rules/router/prefer-use-is-active.ts","moduleParts":{"cli.js":"899472fd-115"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-116":{"id":"/src/rules/ssr/no-mismatch-risk.ts","moduleParts":{"cli.js":"899472fd-117"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-118":{"id":"/src/rules/ssr/no-window-in-ssr.ts","moduleParts":{"cli.js":"899472fd-119"},"imported":[{"uid":"899472fd-10"},{"uid":"899472fd-18"},{"uid":"899472fd-8"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-120":{"id":"/src/rules/ssr/prefer-request-context.ts","moduleParts":{"cli.js":"899472fd-121"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-122":{"id":"/src/rules/store/no-duplicate-store-id.ts","moduleParts":{"cli.js":"899472fd-123"},"imported":[{"uid":"899472fd-10"},{"uid":"899472fd-20"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-124":{"id":"/src/rules/store/no-mutate-store-state.ts","moduleParts":{"cli.js":"899472fd-125"},"imported":[{"uid":"899472fd-10"},{"uid":"899472fd-44"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-126":{"id":"/src/rules/store/no-store-outside-provider.ts","moduleParts":{"cli.js":"899472fd-127"},"imported":[{"uid":"899472fd-10"},{"uid":"899472fd-8"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-128":{"id":"/src/rules/styling/no-dynamic-styled.ts","moduleParts":{"cli.js":"899472fd-129"},"imported":[{"uid":"899472fd-10"},{"uid":"899472fd-44"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-130":{"id":"/src/rules/styling/no-inline-style-object.ts","moduleParts":{"cli.js":"899472fd-131"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-132":{"id":"/src/rules/styling/no-theme-outside-provider.ts","moduleParts":{"cli.js":"899472fd-133"},"imported":[{"uid":"899472fd-10"},{"uid":"899472fd-8"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-134":{"id":"/src/rules/styling/prefer-cx.ts","moduleParts":{"cli.js":"899472fd-135"},"imported":[{"uid":"899472fd-10"}],"importedBy":[{"uid":"899472fd-136"}]},"899472fd-136":{"id":"/src/rules/index.ts","moduleParts":{"cli.js":"899472fd-137"},"imported":[{"uid":"899472fd-12"},{"uid":"899472fd-14"},{"uid":"899472fd-16"},{"uid":"899472fd-22"},{"uid":"899472fd-24"},{"uid":"899472fd-26"},{"uid":"899472fd-28"},{"uid":"899472fd-30"},{"uid":"899472fd-32"},{"uid":"899472fd-34"},{"uid":"899472fd-36"},{"uid":"899472fd-38"},{"uid":"899472fd-40"},{"uid":"899472fd-42"},{"uid":"899472fd-46"},{"uid":"899472fd-48"},{"uid":"899472fd-50"},{"uid":"899472fd-52"},{"uid":"899472fd-54"},{"uid":"899472fd-56"},{"uid":"899472fd-58"},{"uid":"899472fd-60"},{"uid":"899472fd-62"},{"uid":"899472fd-64"},{"uid":"899472fd-66"},{"uid":"899472fd-68"},{"uid":"899472fd-70"},{"uid":"899472fd-72"},{"uid":"899472fd-74"},{"uid":"899472fd-76"},{"uid":"899472fd-78"},{"uid":"899472fd-80"},{"uid":"899472fd-82"},{"uid":"899472fd-84"},{"uid":"899472fd-86"},{"uid":"899472fd-88"},{"uid":"899472fd-90"},{"uid":"899472fd-92"},{"uid":"899472fd-94"},{"uid":"899472fd-96"},{"uid":"899472fd-98"},{"uid":"899472fd-100"},{"uid":"899472fd-102"},{"uid":"899472fd-104"},{"uid":"899472fd-106"},{"uid":"899472fd-108"},{"uid":"899472fd-110"},{"uid":"899472fd-112"},{"uid":"899472fd-114"},{"uid":"899472fd-116"},{"uid":"899472fd-118"},{"uid":"899472fd-120"},{"uid":"899472fd-122"},{"uid":"899472fd-124"},{"uid":"899472fd-126"},{"uid":"899472fd-128"},{"uid":"899472fd-130"},{"uid":"899472fd-132"},{"uid":"899472fd-134"}],"importedBy":[{"uid":"899472fd-148"},{"uid":"899472fd-150"},{"uid":"899472fd-154"},{"uid":"899472fd-138"}]},"899472fd-138":{"id":"/src/config/presets.ts","moduleParts":{"cli.js":"899472fd-139"},"imported":[{"uid":"899472fd-136"}],"importedBy":[{"uid":"899472fd-148"},{"uid":"899472fd-150"},{"uid":"899472fd-154"}]},"899472fd-140":{"id":"/src/utils/source.ts","moduleParts":{"cli.js":"899472fd-141"},"imported":[],"importedBy":[{"uid":"899472fd-146"},{"uid":"899472fd-142"}]},"899472fd-142":{"id":"/src/utils/index.ts","moduleParts":{"cli.js":"899472fd-143"},"imported":[{"uid":"899472fd-10"},{"uid":"899472fd-8"},{"uid":"899472fd-140"}],"importedBy":[{"uid":"899472fd-148"},{"uid":"899472fd-154"},{"uid":"899472fd-146"}]},"899472fd-144":{"id":"/src/utils/validate-options.ts","moduleParts":{"cli.js":"899472fd-145"},"imported":[],"importedBy":[{"uid":"899472fd-146"}]},"899472fd-146":{"id":"/src/runner.ts","moduleParts":{"cli.js":"899472fd-147"},"imported":[{"uid":"899472fd-160"},{"uid":"899472fd-142"},{"uid":"899472fd-140"},{"uid":"899472fd-144"}],"importedBy":[{"uid":"899472fd-148"},{"uid":"899472fd-150"},{"uid":"899472fd-154"}]},"899472fd-148":{"id":"/src/lint.ts","moduleParts":{"cli.js":"899472fd-149"},"imported":[{"uid":"899472fd-158"},{"uid":"899472fd-159"},{"uid":"899472fd-2"},{"uid":"899472fd-4"},{"uid":"899472fd-6"},{"uid":"899472fd-138"},{"uid":"899472fd-136"},{"uid":"899472fd-146"},{"uid":"899472fd-142"}],"importedBy":[{"uid":"899472fd-156"}]},"899472fd-150":{"id":"/src/lsp/index.ts","moduleParts":{"cli.js":"899472fd-151"},"imported":[{"uid":"899472fd-2"},{"uid":"899472fd-138"},{"uid":"899472fd-136"},{"uid":"899472fd-146"}],"importedBy":[{"uid":"899472fd-156"}]},"899472fd-152":{"id":"/src/reporter.ts","moduleParts":{"cli.js":"899472fd-153"},"imported":[],"importedBy":[{"uid":"899472fd-156"},{"uid":"899472fd-154"}]},"899472fd-154":{"id":"/src/watcher.ts","moduleParts":{"cli.js":"899472fd-155"},"imported":[{"uid":"899472fd-158"},{"uid":"899472fd-159"},{"uid":"899472fd-2"},{"uid":"899472fd-4"},{"uid":"899472fd-138"},{"uid":"899472fd-152"},{"uid":"899472fd-136"},{"uid":"899472fd-146"},{"uid":"899472fd-142"}],"importedBy":[{"uid":"899472fd-156"}]},"899472fd-156":{"id":"/src/cli.ts","moduleParts":{"cli.js":"899472fd-157"},"imported":[{"uid":"899472fd-148"},{"uid":"899472fd-150"},{"uid":"899472fd-152"},{"uid":"899472fd-154"}],"importedBy":[],"isEntry":true},"899472fd-158":{"id":"node:fs","moduleParts":{},"imported":[],"importedBy":[{"uid":"899472fd-148"},{"uid":"899472fd-154"},{"uid":"899472fd-4"},{"uid":"899472fd-6"},{"uid":"899472fd-34"}]},"899472fd-159":{"id":"node:path","moduleParts":{},"imported":[],"importedBy":[{"uid":"899472fd-148"},{"uid":"899472fd-154"},{"uid":"899472fd-4"},{"uid":"899472fd-6"},{"uid":"899472fd-34"}]},"899472fd-160":{"id":"oxc-parser","moduleParts":{},"imported":[],"importedBy":[{"uid":"899472fd-146"}]}},"env":{"rollup":"4.23.0"},"options":{"gzip":true,"brotli":false,"sourcemap":false}};
|
|
5390
5390
|
|
|
5391
5391
|
const run = () => {
|
|
5392
5392
|
const width = window.innerWidth;
|
|
@@ -5386,7 +5386,7 @@ var drawChart = (function (exports) {
|
|
|
5386
5386
|
</script>
|
|
5387
5387
|
<script>
|
|
5388
5388
|
/*<!--*/
|
|
5389
|
-
const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.js","children":[{"name":"src","children":[{"uid":"c329e367-1","name":"cache.ts"},{"name":"config","children":[{"uid":"c329e367-3","name":"ignore.ts"},{"uid":"c329e367-5","name":"loader.ts"},{"uid":"c329e367-129","name":"presets.ts"}]},{"name":"utils","children":[{"uid":"c329e367-7","name":"imports.ts"},{"uid":"c329e367-9","name":"ast.ts"},{"uid":"c329e367-131","name":"source.ts"},{"uid":"c329e367-133","name":"index.ts"}]},{"name":"rules","children":[{"name":"accessibility","children":[{"uid":"c329e367-11","name":"dialog-a11y.ts"},{"uid":"c329e367-13","name":"overlay-a11y.ts"},{"uid":"c329e367-15","name":"toast-a11y.ts"}]},{"name":"architecture","children":[{"uid":"c329e367-17","name":"dev-guard-warnings.ts"},{"uid":"c329e367-19","name":"no-circular-import.ts"},{"uid":"c329e367-21","name":"no-cross-layer-import.ts"},{"uid":"c329e367-23","name":"no-deep-import.ts"},{"uid":"c329e367-25","name":"no-error-without-prefix.ts"},{"uid":"c329e367-27","name":"no-process-dev-gate.ts"}]},{"name":"form","children":[{"uid":"c329e367-29","name":"no-submit-without-validation.ts"},{"uid":"c329e367-31","name":"no-unregistered-field.ts"},{"uid":"c329e367-33","name":"prefer-field-array.ts"}]},{"name":"hooks","children":[{"uid":"c329e367-35","name":"no-raw-addeventlistener.ts"},{"uid":"c329e367-37","name":"no-raw-localstorage.ts"},{"uid":"c329e367-39","name":"no-raw-setinterval.ts"}]},{"name":"jsx","children":[{"uid":"c329e367-41","name":"no-and-conditional.ts"},{"uid":"c329e367-43","name":"no-children-access.ts"},{"uid":"c329e367-45","name":"no-classname.ts"},{"uid":"c329e367-47","name":"no-htmlfor.ts"},{"uid":"c329e367-49","name":"no-index-as-by.ts"},{"uid":"c329e367-51","name":"no-map-in-jsx.ts"},{"uid":"c329e367-53","name":"no-missing-for-by.ts"},{"uid":"c329e367-55","name":"no-onchange.ts"},{"uid":"c329e367-57","name":"no-props-destructure.ts"},{"uid":"c329e367-59","name":"no-ternary-conditional.ts"},{"uid":"c329e367-61","name":"use-by-not-key.ts"}]},{"name":"lifecycle","children":[{"uid":"c329e367-63","name":"no-dom-in-setup.ts"},{"uid":"c329e367-65","name":"no-effect-in-mount.ts"},{"uid":"c329e367-67","name":"no-missing-cleanup.ts"},{"uid":"c329e367-69","name":"no-mount-in-effect.ts"}]},{"name":"performance","children":[{"uid":"c329e367-71","name":"no-eager-import.ts"},{"uid":"c329e367-73","name":"no-effect-in-for.ts"},{"uid":"c329e367-75","name":"no-large-for-without-by.ts"},{"uid":"c329e367-77","name":"prefer-show-over-display.ts"}]},{"name":"reactivity","children":[{"uid":"c329e367-79","name":"no-bare-signal-in-jsx.ts"},{"uid":"c329e367-81","name":"no-context-destructure.ts"},{"uid":"c329e367-83","name":"no-effect-assignment.ts"},{"uid":"c329e367-85","name":"no-nested-effect.ts"},{"uid":"c329e367-87","name":"no-peek-in-tracked.ts"},{"uid":"c329e367-89","name":"no-signal-in-loop.ts"},{"uid":"c329e367-91","name":"no-signal-in-props.ts"},{"uid":"c329e367-93","name":"no-signal-leak.ts"},{"uid":"c329e367-95","name":"no-unbatched-updates.ts"},{"uid":"c329e367-97","name":"prefer-computed.ts"}]},{"name":"router","children":[{"uid":"c329e367-99","name":"no-href-navigation.ts"},{"uid":"c329e367-101","name":"no-imperative-navigate-in-render.ts"},{"uid":"c329e367-103","name":"no-missing-fallback.ts"},{"uid":"c329e367-105","name":"prefer-use-is-active.ts"}]},{"name":"ssr","children":[{"uid":"c329e367-107","name":"no-mismatch-risk.ts"},{"uid":"c329e367-109","name":"no-window-in-ssr.ts"},{"uid":"c329e367-111","name":"prefer-request-context.ts"}]},{"name":"store","children":[{"uid":"c329e367-113","name":"no-duplicate-store-id.ts"},{"uid":"c329e367-115","name":"no-mutate-store-state.ts"},{"uid":"c329e367-117","name":"no-store-outside-provider.ts"}]},{"name":"styling","children":[{"uid":"c329e367-119","name":"no-dynamic-styled.ts"},{"uid":"c329e367-121","name":"no-inline-style-object.ts"},{"uid":"c329e367-123","name":"no-theme-outside-provider.ts"},{"uid":"c329e367-125","name":"prefer-cx.ts"}]},{"uid":"c329e367-127","name":"index.ts"}]},{"uid":"c329e367-135","name":"runner.ts"},{"uid":"c329e367-137","name":"lint.ts"},{"uid":"c329e367-139","name":"reporter.ts"},{"name":"lsp/index.ts","uid":"c329e367-141"},{"uid":"c329e367-143","name":"watcher.ts"},{"uid":"c329e367-145","name":"index.ts"}]}]}],"isRoot":true},"nodeParts":{"c329e367-1":{"renderedLength":1035,"gzipLength":568,"brotliLength":0,"metaUid":"c329e367-0"},"c329e367-3":{"renderedLength":3011,"gzipLength":1239,"brotliLength":0,"metaUid":"c329e367-2"},"c329e367-5":{"renderedLength":1626,"gzipLength":713,"brotliLength":0,"metaUid":"c329e367-4"},"c329e367-7":{"renderedLength":2019,"gzipLength":780,"brotliLength":0,"metaUid":"c329e367-6"},"c329e367-9":{"renderedLength":2849,"gzipLength":776,"brotliLength":0,"metaUid":"c329e367-8"},"c329e367-11":{"renderedLength":775,"gzipLength":445,"brotliLength":0,"metaUid":"c329e367-10"},"c329e367-13":{"renderedLength":864,"gzipLength":470,"brotliLength":0,"metaUid":"c329e367-12"},"c329e367-15":{"renderedLength":1014,"gzipLength":554,"brotliLength":0,"metaUid":"c329e367-14"},"c329e367-17":{"renderedLength":1384,"gzipLength":617,"brotliLength":0,"metaUid":"c329e367-16"},"c329e367-19":{"renderedLength":1388,"gzipLength":674,"brotliLength":0,"metaUid":"c329e367-18"},"c329e367-21":{"renderedLength":1688,"gzipLength":687,"brotliLength":0,"metaUid":"c329e367-20"},"c329e367-23":{"renderedLength":710,"gzipLength":443,"brotliLength":0,"metaUid":"c329e367-22"},"c329e367-25":{"renderedLength":2127,"gzipLength":819,"brotliLength":0,"metaUid":"c329e367-24"},"c329e367-27":{"renderedLength":5979,"gzipLength":2048,"brotliLength":0,"metaUid":"c329e367-26"},"c329e367-29":{"renderedLength":1182,"gzipLength":592,"brotliLength":0,"metaUid":"c329e367-28"},"c329e367-31":{"renderedLength":1258,"gzipLength":613,"brotliLength":0,"metaUid":"c329e367-30"},"c329e367-33":{"renderedLength":905,"gzipLength":500,"brotliLength":0,"metaUid":"c329e367-32"},"c329e367-35":{"renderedLength":740,"gzipLength":425,"brotliLength":0,"metaUid":"c329e367-34"},"c329e367-37":{"renderedLength":987,"gzipLength":537,"brotliLength":0,"metaUid":"c329e367-36"},"c329e367-39":{"renderedLength":924,"gzipLength":508,"brotliLength":0,"metaUid":"c329e367-38"},"c329e367-41":{"renderedLength":718,"gzipLength":404,"brotliLength":0,"metaUid":"c329e367-40"},"c329e367-43":{"renderedLength":967,"gzipLength":507,"brotliLength":0,"metaUid":"c329e367-42"},"c329e367-45":{"renderedLength":680,"gzipLength":373,"brotliLength":0,"metaUid":"c329e367-44"},"c329e367-47":{"renderedLength":662,"gzipLength":371,"brotliLength":0,"metaUid":"c329e367-46"},"c329e367-49":{"renderedLength":1641,"gzipLength":677,"brotliLength":0,"metaUid":"c329e367-48"},"c329e367-51":{"renderedLength":839,"gzipLength":451,"brotliLength":0,"metaUid":"c329e367-50"},"c329e367-53":{"renderedLength":617,"gzipLength":408,"brotliLength":0,"metaUid":"c329e367-52"},"c329e367-55":{"renderedLength":1068,"gzipLength":555,"brotliLength":0,"metaUid":"c329e367-54"},"c329e367-57":{"renderedLength":2729,"gzipLength":1039,"brotliLength":0,"metaUid":"c329e367-56"},"c329e367-59":{"renderedLength":748,"gzipLength":411,"brotliLength":0,"metaUid":"c329e367-58"},"c329e367-61":{"renderedLength":825,"gzipLength":454,"brotliLength":0,"metaUid":"c329e367-60"},"c329e367-63":{"renderedLength":1158,"gzipLength":596,"brotliLength":0,"metaUid":"c329e367-62"},"c329e367-65":{"renderedLength":780,"gzipLength":414,"brotliLength":0,"metaUid":"c329e367-64"},"c329e367-67":{"renderedLength":1844,"gzipLength":792,"brotliLength":0,"metaUid":"c329e367-66"},"c329e367-69":{"renderedLength":707,"gzipLength":396,"brotliLength":0,"metaUid":"c329e367-68"},"c329e367-71":{"renderedLength":636,"gzipLength":427,"brotliLength":0,"metaUid":"c329e367-70"},"c329e367-73":{"renderedLength":947,"gzipLength":492,"brotliLength":0,"metaUid":"c329e367-72"},"c329e367-75":{"renderedLength":696,"gzipLength":431,"brotliLength":0,"metaUid":"c329e367-74"},"c329e367-77":{"renderedLength":1232,"gzipLength":600,"brotliLength":0,"metaUid":"c329e367-76"},"c329e367-79":{"renderedLength":1266,"gzipLength":635,"brotliLength":0,"metaUid":"c329e367-78"},"c329e367-81":{"renderedLength":1161,"gzipLength":580,"brotliLength":0,"metaUid":"c329e367-80"},"c329e367-83":{"renderedLength":1450,"gzipLength":617,"brotliLength":0,"metaUid":"c329e367-82"},"c329e367-85":{"renderedLength":686,"gzipLength":396,"brotliLength":0,"metaUid":"c329e367-84"},"c329e367-87":{"renderedLength":821,"gzipLength":440,"brotliLength":0,"metaUid":"c329e367-86"},"c329e367-89":{"renderedLength":1217,"gzipLength":514,"brotliLength":0,"metaUid":"c329e367-88"},"c329e367-91":{"renderedLength":1620,"gzipLength":821,"brotliLength":0,"metaUid":"c329e367-90"},"c329e367-93":{"renderedLength":1348,"gzipLength":652,"brotliLength":0,"metaUid":"c329e367-92"},"c329e367-95":{"renderedLength":1672,"gzipLength":680,"brotliLength":0,"metaUid":"c329e367-94"},"c329e367-97":{"renderedLength":1280,"gzipLength":561,"brotliLength":0,"metaUid":"c329e367-96"},"c329e367-99":{"renderedLength":1247,"gzipLength":642,"brotliLength":0,"metaUid":"c329e367-98"},"c329e367-101":{"renderedLength":1887,"gzipLength":716,"brotliLength":0,"metaUid":"c329e367-100"},"c329e367-103":{"renderedLength":2081,"gzipLength":873,"brotliLength":0,"metaUid":"c329e367-102"},"c329e367-105":{"renderedLength":1126,"gzipLength":551,"brotliLength":0,"metaUid":"c329e367-104"},"c329e367-107":{"renderedLength":1062,"gzipLength":556,"brotliLength":0,"metaUid":"c329e367-106"},"c329e367-109":{"renderedLength":1683,"gzipLength":673,"brotliLength":0,"metaUid":"c329e367-108"},"c329e367-111":{"renderedLength":1327,"gzipLength":576,"brotliLength":0,"metaUid":"c329e367-110"},"c329e367-113":{"renderedLength":927,"gzipLength":522,"brotliLength":0,"metaUid":"c329e367-112"},"c329e367-115":{"renderedLength":976,"gzipLength":503,"brotliLength":0,"metaUid":"c329e367-114"},"c329e367-117":{"renderedLength":1445,"gzipLength":684,"brotliLength":0,"metaUid":"c329e367-116"},"c329e367-119":{"renderedLength":1371,"gzipLength":505,"brotliLength":0,"metaUid":"c329e367-118"},"c329e367-121":{"renderedLength":768,"gzipLength":452,"brotliLength":0,"metaUid":"c329e367-120"},"c329e367-123":{"renderedLength":1014,"gzipLength":533,"brotliLength":0,"metaUid":"c329e367-122"},"c329e367-125":{"renderedLength":1040,"gzipLength":503,"brotliLength":0,"metaUid":"c329e367-124"},"c329e367-127":{"renderedLength":1153,"gzipLength":596,"brotliLength":0,"metaUid":"c329e367-126"},"c329e367-129":{"renderedLength":1348,"gzipLength":539,"brotliLength":0,"metaUid":"c329e367-128"},"c329e367-131":{"renderedLength":699,"gzipLength":407,"brotliLength":0,"metaUid":"c329e367-130"},"c329e367-133":{"renderedLength":368,"gzipLength":256,"brotliLength":0,"metaUid":"c329e367-132"},"c329e367-135":{"renderedLength":3602,"gzipLength":1388,"brotliLength":0,"metaUid":"c329e367-134"},"c329e367-137":{"renderedLength":4170,"gzipLength":1355,"brotliLength":0,"metaUid":"c329e367-136"},"c329e367-139":{"renderedLength":1975,"gzipLength":729,"brotliLength":0,"metaUid":"c329e367-138"},"c329e367-141":{"renderedLength":4557,"gzipLength":1641,"brotliLength":0,"metaUid":"c329e367-140"},"c329e367-143":{"renderedLength":2261,"gzipLength":991,"brotliLength":0,"metaUid":"c329e367-142"},"c329e367-145":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c329e367-144"}},"nodeMetas":{"c329e367-0":{"id":"/src/cache.ts","moduleParts":{"index.js":"c329e367-1"},"imported":[],"importedBy":[{"uid":"c329e367-144"},{"uid":"c329e367-136"},{"uid":"c329e367-140"},{"uid":"c329e367-142"}]},"c329e367-2":{"id":"/src/config/ignore.ts","moduleParts":{"index.js":"c329e367-3"},"imported":[{"uid":"c329e367-146"},{"uid":"c329e367-147"}],"importedBy":[{"uid":"c329e367-144"},{"uid":"c329e367-136"},{"uid":"c329e367-142"}]},"c329e367-4":{"id":"/src/config/loader.ts","moduleParts":{"index.js":"c329e367-5"},"imported":[{"uid":"c329e367-146"},{"uid":"c329e367-147"}],"importedBy":[{"uid":"c329e367-144"},{"uid":"c329e367-136"}]},"c329e367-6":{"id":"/src/utils/imports.ts","moduleParts":{"index.js":"c329e367-7"},"imported":[],"importedBy":[{"uid":"c329e367-144"},{"uid":"c329e367-132"},{"uid":"c329e367-18"},{"uid":"c329e367-20"},{"uid":"c329e367-22"},{"uid":"c329e367-32"},{"uid":"c329e367-42"},{"uid":"c329e367-70"},{"uid":"c329e367-98"},{"uid":"c329e367-102"},{"uid":"c329e367-108"},{"uid":"c329e367-116"},{"uid":"c329e367-122"},{"uid":"c329e367-8"}]},"c329e367-8":{"id":"/src/utils/ast.ts","moduleParts":{"index.js":"c329e367-9"},"imported":[{"uid":"c329e367-6"}],"importedBy":[{"uid":"c329e367-132"},{"uid":"c329e367-10"},{"uid":"c329e367-12"},{"uid":"c329e367-14"},{"uid":"c329e367-16"},{"uid":"c329e367-18"},{"uid":"c329e367-20"},{"uid":"c329e367-22"},{"uid":"c329e367-24"},{"uid":"c329e367-26"},{"uid":"c329e367-28"},{"uid":"c329e367-30"},{"uid":"c329e367-32"},{"uid":"c329e367-34"},{"uid":"c329e367-36"},{"uid":"c329e367-38"},{"uid":"c329e367-40"},{"uid":"c329e367-42"},{"uid":"c329e367-44"},{"uid":"c329e367-46"},{"uid":"c329e367-48"},{"uid":"c329e367-50"},{"uid":"c329e367-52"},{"uid":"c329e367-54"},{"uid":"c329e367-56"},{"uid":"c329e367-58"},{"uid":"c329e367-60"},{"uid":"c329e367-62"},{"uid":"c329e367-64"},{"uid":"c329e367-66"},{"uid":"c329e367-68"},{"uid":"c329e367-70"},{"uid":"c329e367-72"},{"uid":"c329e367-74"},{"uid":"c329e367-76"},{"uid":"c329e367-78"},{"uid":"c329e367-80"},{"uid":"c329e367-82"},{"uid":"c329e367-84"},{"uid":"c329e367-86"},{"uid":"c329e367-88"},{"uid":"c329e367-90"},{"uid":"c329e367-92"},{"uid":"c329e367-94"},{"uid":"c329e367-96"},{"uid":"c329e367-98"},{"uid":"c329e367-100"},{"uid":"c329e367-102"},{"uid":"c329e367-104"},{"uid":"c329e367-106"},{"uid":"c329e367-108"},{"uid":"c329e367-110"},{"uid":"c329e367-112"},{"uid":"c329e367-114"},{"uid":"c329e367-116"},{"uid":"c329e367-118"},{"uid":"c329e367-120"},{"uid":"c329e367-122"},{"uid":"c329e367-124"}]},"c329e367-10":{"id":"/src/rules/accessibility/dialog-a11y.ts","moduleParts":{"index.js":"c329e367-11"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-12":{"id":"/src/rules/accessibility/overlay-a11y.ts","moduleParts":{"index.js":"c329e367-13"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-14":{"id":"/src/rules/accessibility/toast-a11y.ts","moduleParts":{"index.js":"c329e367-15"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-16":{"id":"/src/rules/architecture/dev-guard-warnings.ts","moduleParts":{"index.js":"c329e367-17"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-18":{"id":"/src/rules/architecture/no-circular-import.ts","moduleParts":{"index.js":"c329e367-19"},"imported":[{"uid":"c329e367-8"},{"uid":"c329e367-6"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-20":{"id":"/src/rules/architecture/no-cross-layer-import.ts","moduleParts":{"index.js":"c329e367-21"},"imported":[{"uid":"c329e367-8"},{"uid":"c329e367-6"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-22":{"id":"/src/rules/architecture/no-deep-import.ts","moduleParts":{"index.js":"c329e367-23"},"imported":[{"uid":"c329e367-8"},{"uid":"c329e367-6"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-24":{"id":"/src/rules/architecture/no-error-without-prefix.ts","moduleParts":{"index.js":"c329e367-25"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-26":{"id":"/src/rules/architecture/no-process-dev-gate.ts","moduleParts":{"index.js":"c329e367-27"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-28":{"id":"/src/rules/form/no-submit-without-validation.ts","moduleParts":{"index.js":"c329e367-29"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-30":{"id":"/src/rules/form/no-unregistered-field.ts","moduleParts":{"index.js":"c329e367-31"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-32":{"id":"/src/rules/form/prefer-field-array.ts","moduleParts":{"index.js":"c329e367-33"},"imported":[{"uid":"c329e367-8"},{"uid":"c329e367-6"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-34":{"id":"/src/rules/hooks/no-raw-addeventlistener.ts","moduleParts":{"index.js":"c329e367-35"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-36":{"id":"/src/rules/hooks/no-raw-localstorage.ts","moduleParts":{"index.js":"c329e367-37"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-38":{"id":"/src/rules/hooks/no-raw-setinterval.ts","moduleParts":{"index.js":"c329e367-39"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-40":{"id":"/src/rules/jsx/no-and-conditional.ts","moduleParts":{"index.js":"c329e367-41"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-42":{"id":"/src/rules/jsx/no-children-access.ts","moduleParts":{"index.js":"c329e367-43"},"imported":[{"uid":"c329e367-8"},{"uid":"c329e367-6"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-44":{"id":"/src/rules/jsx/no-classname.ts","moduleParts":{"index.js":"c329e367-45"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-46":{"id":"/src/rules/jsx/no-htmlfor.ts","moduleParts":{"index.js":"c329e367-47"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-48":{"id":"/src/rules/jsx/no-index-as-by.ts","moduleParts":{"index.js":"c329e367-49"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-50":{"id":"/src/rules/jsx/no-map-in-jsx.ts","moduleParts":{"index.js":"c329e367-51"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-52":{"id":"/src/rules/jsx/no-missing-for-by.ts","moduleParts":{"index.js":"c329e367-53"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-54":{"id":"/src/rules/jsx/no-onchange.ts","moduleParts":{"index.js":"c329e367-55"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-56":{"id":"/src/rules/jsx/no-props-destructure.ts","moduleParts":{"index.js":"c329e367-57"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-58":{"id":"/src/rules/jsx/no-ternary-conditional.ts","moduleParts":{"index.js":"c329e367-59"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-60":{"id":"/src/rules/jsx/use-by-not-key.ts","moduleParts":{"index.js":"c329e367-61"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-62":{"id":"/src/rules/lifecycle/no-dom-in-setup.ts","moduleParts":{"index.js":"c329e367-63"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-64":{"id":"/src/rules/lifecycle/no-effect-in-mount.ts","moduleParts":{"index.js":"c329e367-65"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-66":{"id":"/src/rules/lifecycle/no-missing-cleanup.ts","moduleParts":{"index.js":"c329e367-67"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-68":{"id":"/src/rules/lifecycle/no-mount-in-effect.ts","moduleParts":{"index.js":"c329e367-69"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-70":{"id":"/src/rules/performance/no-eager-import.ts","moduleParts":{"index.js":"c329e367-71"},"imported":[{"uid":"c329e367-8"},{"uid":"c329e367-6"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-72":{"id":"/src/rules/performance/no-effect-in-for.ts","moduleParts":{"index.js":"c329e367-73"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-74":{"id":"/src/rules/performance/no-large-for-without-by.ts","moduleParts":{"index.js":"c329e367-75"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-76":{"id":"/src/rules/performance/prefer-show-over-display.ts","moduleParts":{"index.js":"c329e367-77"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-78":{"id":"/src/rules/reactivity/no-bare-signal-in-jsx.ts","moduleParts":{"index.js":"c329e367-79"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-80":{"id":"/src/rules/reactivity/no-context-destructure.ts","moduleParts":{"index.js":"c329e367-81"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-82":{"id":"/src/rules/reactivity/no-effect-assignment.ts","moduleParts":{"index.js":"c329e367-83"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-84":{"id":"/src/rules/reactivity/no-nested-effect.ts","moduleParts":{"index.js":"c329e367-85"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-86":{"id":"/src/rules/reactivity/no-peek-in-tracked.ts","moduleParts":{"index.js":"c329e367-87"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-88":{"id":"/src/rules/reactivity/no-signal-in-loop.ts","moduleParts":{"index.js":"c329e367-89"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-90":{"id":"/src/rules/reactivity/no-signal-in-props.ts","moduleParts":{"index.js":"c329e367-91"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-92":{"id":"/src/rules/reactivity/no-signal-leak.ts","moduleParts":{"index.js":"c329e367-93"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-94":{"id":"/src/rules/reactivity/no-unbatched-updates.ts","moduleParts":{"index.js":"c329e367-95"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-96":{"id":"/src/rules/reactivity/prefer-computed.ts","moduleParts":{"index.js":"c329e367-97"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-98":{"id":"/src/rules/router/no-href-navigation.ts","moduleParts":{"index.js":"c329e367-99"},"imported":[{"uid":"c329e367-8"},{"uid":"c329e367-6"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-100":{"id":"/src/rules/router/no-imperative-navigate-in-render.ts","moduleParts":{"index.js":"c329e367-101"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-102":{"id":"/src/rules/router/no-missing-fallback.ts","moduleParts":{"index.js":"c329e367-103"},"imported":[{"uid":"c329e367-8"},{"uid":"c329e367-6"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-104":{"id":"/src/rules/router/prefer-use-is-active.ts","moduleParts":{"index.js":"c329e367-105"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-106":{"id":"/src/rules/ssr/no-mismatch-risk.ts","moduleParts":{"index.js":"c329e367-107"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-108":{"id":"/src/rules/ssr/no-window-in-ssr.ts","moduleParts":{"index.js":"c329e367-109"},"imported":[{"uid":"c329e367-8"},{"uid":"c329e367-6"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-110":{"id":"/src/rules/ssr/prefer-request-context.ts","moduleParts":{"index.js":"c329e367-111"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-112":{"id":"/src/rules/store/no-duplicate-store-id.ts","moduleParts":{"index.js":"c329e367-113"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-114":{"id":"/src/rules/store/no-mutate-store-state.ts","moduleParts":{"index.js":"c329e367-115"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-116":{"id":"/src/rules/store/no-store-outside-provider.ts","moduleParts":{"index.js":"c329e367-117"},"imported":[{"uid":"c329e367-8"},{"uid":"c329e367-6"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-118":{"id":"/src/rules/styling/no-dynamic-styled.ts","moduleParts":{"index.js":"c329e367-119"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-120":{"id":"/src/rules/styling/no-inline-style-object.ts","moduleParts":{"index.js":"c329e367-121"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-122":{"id":"/src/rules/styling/no-theme-outside-provider.ts","moduleParts":{"index.js":"c329e367-123"},"imported":[{"uid":"c329e367-8"},{"uid":"c329e367-6"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-124":{"id":"/src/rules/styling/prefer-cx.ts","moduleParts":{"index.js":"c329e367-125"},"imported":[{"uid":"c329e367-8"}],"importedBy":[{"uid":"c329e367-126"}]},"c329e367-126":{"id":"/src/rules/index.ts","moduleParts":{"index.js":"c329e367-127"},"imported":[{"uid":"c329e367-10"},{"uid":"c329e367-12"},{"uid":"c329e367-14"},{"uid":"c329e367-16"},{"uid":"c329e367-18"},{"uid":"c329e367-20"},{"uid":"c329e367-22"},{"uid":"c329e367-24"},{"uid":"c329e367-26"},{"uid":"c329e367-28"},{"uid":"c329e367-30"},{"uid":"c329e367-32"},{"uid":"c329e367-34"},{"uid":"c329e367-36"},{"uid":"c329e367-38"},{"uid":"c329e367-40"},{"uid":"c329e367-42"},{"uid":"c329e367-44"},{"uid":"c329e367-46"},{"uid":"c329e367-48"},{"uid":"c329e367-50"},{"uid":"c329e367-52"},{"uid":"c329e367-54"},{"uid":"c329e367-56"},{"uid":"c329e367-58"},{"uid":"c329e367-60"},{"uid":"c329e367-62"},{"uid":"c329e367-64"},{"uid":"c329e367-66"},{"uid":"c329e367-68"},{"uid":"c329e367-70"},{"uid":"c329e367-72"},{"uid":"c329e367-74"},{"uid":"c329e367-76"},{"uid":"c329e367-78"},{"uid":"c329e367-80"},{"uid":"c329e367-82"},{"uid":"c329e367-84"},{"uid":"c329e367-86"},{"uid":"c329e367-88"},{"uid":"c329e367-90"},{"uid":"c329e367-92"},{"uid":"c329e367-94"},{"uid":"c329e367-96"},{"uid":"c329e367-98"},{"uid":"c329e367-100"},{"uid":"c329e367-102"},{"uid":"c329e367-104"},{"uid":"c329e367-106"},{"uid":"c329e367-108"},{"uid":"c329e367-110"},{"uid":"c329e367-112"},{"uid":"c329e367-114"},{"uid":"c329e367-116"},{"uid":"c329e367-118"},{"uid":"c329e367-120"},{"uid":"c329e367-122"},{"uid":"c329e367-124"}],"importedBy":[{"uid":"c329e367-144"},{"uid":"c329e367-128"},{"uid":"c329e367-136"},{"uid":"c329e367-140"},{"uid":"c329e367-142"}]},"c329e367-128":{"id":"/src/config/presets.ts","moduleParts":{"index.js":"c329e367-129"},"imported":[{"uid":"c329e367-126"}],"importedBy":[{"uid":"c329e367-144"},{"uid":"c329e367-136"},{"uid":"c329e367-140"},{"uid":"c329e367-142"}]},"c329e367-130":{"id":"/src/utils/source.ts","moduleParts":{"index.js":"c329e367-131"},"imported":[],"importedBy":[{"uid":"c329e367-144"},{"uid":"c329e367-134"},{"uid":"c329e367-132"}]},"c329e367-132":{"id":"/src/utils/index.ts","moduleParts":{"index.js":"c329e367-133"},"imported":[{"uid":"c329e367-8"},{"uid":"c329e367-6"},{"uid":"c329e367-130"}],"importedBy":[{"uid":"c329e367-136"},{"uid":"c329e367-134"},{"uid":"c329e367-142"}]},"c329e367-134":{"id":"/src/runner.ts","moduleParts":{"index.js":"c329e367-135"},"imported":[{"uid":"c329e367-148"},{"uid":"c329e367-132"},{"uid":"c329e367-130"}],"importedBy":[{"uid":"c329e367-144"},{"uid":"c329e367-136"},{"uid":"c329e367-140"},{"uid":"c329e367-142"}]},"c329e367-136":{"id":"/src/lint.ts","moduleParts":{"index.js":"c329e367-137"},"imported":[{"uid":"c329e367-146"},{"uid":"c329e367-147"},{"uid":"c329e367-0"},{"uid":"c329e367-2"},{"uid":"c329e367-4"},{"uid":"c329e367-128"},{"uid":"c329e367-126"},{"uid":"c329e367-134"},{"uid":"c329e367-132"}],"importedBy":[{"uid":"c329e367-144"}]},"c329e367-138":{"id":"/src/reporter.ts","moduleParts":{"index.js":"c329e367-139"},"imported":[],"importedBy":[{"uid":"c329e367-144"},{"uid":"c329e367-142"}]},"c329e367-140":{"id":"/src/lsp/index.ts","moduleParts":{"index.js":"c329e367-141"},"imported":[{"uid":"c329e367-0"},{"uid":"c329e367-128"},{"uid":"c329e367-126"},{"uid":"c329e367-134"}],"importedBy":[{"uid":"c329e367-144"}]},"c329e367-142":{"id":"/src/watcher.ts","moduleParts":{"index.js":"c329e367-143"},"imported":[{"uid":"c329e367-146"},{"uid":"c329e367-147"},{"uid":"c329e367-0"},{"uid":"c329e367-2"},{"uid":"c329e367-128"},{"uid":"c329e367-138"},{"uid":"c329e367-126"},{"uid":"c329e367-134"},{"uid":"c329e367-132"}],"importedBy":[{"uid":"c329e367-144"}]},"c329e367-144":{"id":"/src/index.ts","moduleParts":{"index.js":"c329e367-145"},"imported":[{"uid":"c329e367-0"},{"uid":"c329e367-2"},{"uid":"c329e367-4"},{"uid":"c329e367-128"},{"uid":"c329e367-136"},{"uid":"c329e367-138"},{"uid":"c329e367-140"},{"uid":"c329e367-126"},{"uid":"c329e367-134"},{"uid":"c329e367-6"},{"uid":"c329e367-130"},{"uid":"c329e367-142"}],"importedBy":[],"isEntry":true},"c329e367-146":{"id":"node:fs","moduleParts":{},"imported":[],"importedBy":[{"uid":"c329e367-2"},{"uid":"c329e367-4"},{"uid":"c329e367-136"},{"uid":"c329e367-142"}]},"c329e367-147":{"id":"node:path","moduleParts":{},"imported":[],"importedBy":[{"uid":"c329e367-2"},{"uid":"c329e367-4"},{"uid":"c329e367-136"},{"uid":"c329e367-142"}]},"c329e367-148":{"id":"oxc-parser","moduleParts":{},"imported":[],"importedBy":[{"uid":"c329e367-134"}]}},"env":{"rollup":"4.23.0"},"options":{"gzip":true,"brotli":false,"sourcemap":false}};
|
|
5389
|
+
const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.js","children":[{"name":"\u0000rolldown/runtime.js","uid":"48ee51dd-1"},{"name":"src","children":[{"uid":"48ee51dd-3","name":"cache.ts"},{"name":"config","children":[{"uid":"48ee51dd-5","name":"ignore.ts"},{"uid":"48ee51dd-7","name":"loader.ts"},{"uid":"48ee51dd-139","name":"presets.ts"}]},{"name":"utils","children":[{"uid":"48ee51dd-9","name":"imports.ts"},{"uid":"48ee51dd-11","name":"ast.ts"},{"uid":"48ee51dd-19","name":"exempt-paths.ts"},{"uid":"48ee51dd-21","name":"file-roles.ts"},{"uid":"48ee51dd-45","name":"component-context.ts"},{"uid":"48ee51dd-141","name":"source.ts"},{"uid":"48ee51dd-143","name":"index.ts"},{"uid":"48ee51dd-145","name":"validate-options.ts"}]},{"name":"rules","children":[{"name":"accessibility","children":[{"uid":"48ee51dd-13","name":"dialog-a11y.ts"},{"uid":"48ee51dd-15","name":"overlay-a11y.ts"},{"uid":"48ee51dd-17","name":"toast-a11y.ts"}]},{"name":"architecture","children":[{"uid":"48ee51dd-23","name":"dev-guard-warnings.ts"},{"uid":"48ee51dd-25","name":"no-circular-import.ts"},{"uid":"48ee51dd-27","name":"no-cross-layer-import.ts"},{"uid":"48ee51dd-29","name":"no-deep-import.ts"},{"uid":"48ee51dd-31","name":"no-error-without-prefix.ts"},{"uid":"48ee51dd-33","name":"no-process-dev-gate.ts"},{"uid":"48ee51dd-35","name":"require-browser-smoke-test.ts"}]},{"name":"form","children":[{"uid":"48ee51dd-37","name":"no-submit-without-validation.ts"},{"uid":"48ee51dd-39","name":"no-unregistered-field.ts"},{"uid":"48ee51dd-41","name":"prefer-field-array.ts"}]},{"name":"hooks","children":[{"uid":"48ee51dd-43","name":"no-raw-addeventlistener.ts"},{"uid":"48ee51dd-47","name":"no-raw-localstorage.ts"},{"uid":"48ee51dd-49","name":"no-raw-setinterval.ts"}]},{"name":"jsx","children":[{"uid":"48ee51dd-51","name":"no-and-conditional.ts"},{"uid":"48ee51dd-53","name":"no-children-access.ts"},{"uid":"48ee51dd-55","name":"no-classname.ts"},{"uid":"48ee51dd-57","name":"no-htmlfor.ts"},{"uid":"48ee51dd-59","name":"no-index-as-by.ts"},{"uid":"48ee51dd-61","name":"no-map-in-jsx.ts"},{"uid":"48ee51dd-63","name":"no-missing-for-by.ts"},{"uid":"48ee51dd-65","name":"no-onchange.ts"},{"uid":"48ee51dd-67","name":"no-props-destructure.ts"},{"uid":"48ee51dd-69","name":"no-ternary-conditional.ts"},{"uid":"48ee51dd-71","name":"use-by-not-key.ts"}]},{"name":"lifecycle","children":[{"uid":"48ee51dd-73","name":"no-dom-in-setup.ts"},{"uid":"48ee51dd-75","name":"no-effect-in-mount.ts"},{"uid":"48ee51dd-77","name":"no-missing-cleanup.ts"},{"uid":"48ee51dd-79","name":"no-mount-in-effect.ts"}]},{"name":"performance","children":[{"uid":"48ee51dd-81","name":"no-eager-import.ts"},{"uid":"48ee51dd-83","name":"no-effect-in-for.ts"},{"uid":"48ee51dd-85","name":"no-large-for-without-by.ts"},{"uid":"48ee51dd-87","name":"prefer-show-over-display.ts"}]},{"name":"reactivity","children":[{"uid":"48ee51dd-89","name":"no-bare-signal-in-jsx.ts"},{"uid":"48ee51dd-91","name":"no-context-destructure.ts"},{"uid":"48ee51dd-93","name":"no-effect-assignment.ts"},{"uid":"48ee51dd-95","name":"no-nested-effect.ts"},{"uid":"48ee51dd-97","name":"no-peek-in-tracked.ts"},{"uid":"48ee51dd-99","name":"no-signal-in-loop.ts"},{"uid":"48ee51dd-101","name":"no-signal-in-props.ts"},{"uid":"48ee51dd-103","name":"no-signal-leak.ts"},{"uid":"48ee51dd-105","name":"no-unbatched-updates.ts"},{"uid":"48ee51dd-107","name":"prefer-computed.ts"}]},{"name":"router","children":[{"uid":"48ee51dd-109","name":"no-href-navigation.ts"},{"uid":"48ee51dd-111","name":"no-imperative-navigate-in-render.ts"},{"uid":"48ee51dd-113","name":"no-missing-fallback.ts"},{"uid":"48ee51dd-115","name":"prefer-use-is-active.ts"}]},{"name":"ssr","children":[{"uid":"48ee51dd-117","name":"no-mismatch-risk.ts"},{"uid":"48ee51dd-119","name":"no-window-in-ssr.ts"},{"uid":"48ee51dd-121","name":"prefer-request-context.ts"}]},{"name":"store","children":[{"uid":"48ee51dd-123","name":"no-duplicate-store-id.ts"},{"uid":"48ee51dd-125","name":"no-mutate-store-state.ts"},{"uid":"48ee51dd-127","name":"no-store-outside-provider.ts"}]},{"name":"styling","children":[{"uid":"48ee51dd-129","name":"no-dynamic-styled.ts"},{"uid":"48ee51dd-131","name":"no-inline-style-object.ts"},{"uid":"48ee51dd-133","name":"no-theme-outside-provider.ts"},{"uid":"48ee51dd-135","name":"prefer-cx.ts"}]},{"uid":"48ee51dd-137","name":"index.ts"}]},{"uid":"48ee51dd-147","name":"runner.ts"},{"uid":"48ee51dd-149","name":"lint.ts"},{"uid":"48ee51dd-151","name":"reporter.ts"},{"name":"lsp/index.ts","uid":"48ee51dd-153"},{"uid":"48ee51dd-155","name":"watcher.ts"},{"uid":"48ee51dd-157","name":"index.ts"}]}]}],"isRoot":true},"nodeParts":{"48ee51dd-1":{"renderedLength":545,"gzipLength":335,"brotliLength":0,"metaUid":"48ee51dd-0"},"48ee51dd-3":{"renderedLength":1035,"gzipLength":568,"brotliLength":0,"metaUid":"48ee51dd-2"},"48ee51dd-5":{"renderedLength":3011,"gzipLength":1239,"brotliLength":0,"metaUid":"48ee51dd-4"},"48ee51dd-7":{"renderedLength":1626,"gzipLength":713,"brotliLength":0,"metaUid":"48ee51dd-6"},"48ee51dd-9":{"renderedLength":2009,"gzipLength":773,"brotliLength":0,"metaUid":"48ee51dd-8"},"48ee51dd-11":{"renderedLength":2849,"gzipLength":776,"brotliLength":0,"metaUid":"48ee51dd-10"},"48ee51dd-13":{"renderedLength":775,"gzipLength":445,"brotliLength":0,"metaUid":"48ee51dd-12"},"48ee51dd-15":{"renderedLength":864,"gzipLength":470,"brotliLength":0,"metaUid":"48ee51dd-14"},"48ee51dd-17":{"renderedLength":1014,"gzipLength":554,"brotliLength":0,"metaUid":"48ee51dd-16"},"48ee51dd-19":{"renderedLength":353,"gzipLength":239,"brotliLength":0,"metaUid":"48ee51dd-18"},"48ee51dd-21":{"renderedLength":1151,"gzipLength":586,"brotliLength":0,"metaUid":"48ee51dd-20"},"48ee51dd-23":{"renderedLength":5150,"gzipLength":1561,"brotliLength":0,"metaUid":"48ee51dd-22"},"48ee51dd-25":{"renderedLength":1456,"gzipLength":691,"brotliLength":0,"metaUid":"48ee51dd-24"},"48ee51dd-27":{"renderedLength":1688,"gzipLength":687,"brotliLength":0,"metaUid":"48ee51dd-26"},"48ee51dd-29":{"renderedLength":710,"gzipLength":443,"brotliLength":0,"metaUid":"48ee51dd-28"},"48ee51dd-31":{"renderedLength":2127,"gzipLength":819,"brotliLength":0,"metaUid":"48ee51dd-30"},"48ee51dd-33":{"renderedLength":5106,"gzipLength":1760,"brotliLength":0,"metaUid":"48ee51dd-32"},"48ee51dd-35":{"renderedLength":6984,"gzipLength":2831,"brotliLength":0,"metaUid":"48ee51dd-34"},"48ee51dd-37":{"renderedLength":1234,"gzipLength":612,"brotliLength":0,"metaUid":"48ee51dd-36"},"48ee51dd-39":{"renderedLength":1310,"gzipLength":636,"brotliLength":0,"metaUid":"48ee51dd-38"},"48ee51dd-41":{"renderedLength":905,"gzipLength":500,"brotliLength":0,"metaUid":"48ee51dd-40"},"48ee51dd-43":{"renderedLength":819,"gzipLength":465,"brotliLength":0,"metaUid":"48ee51dd-42"},"48ee51dd-45":{"renderedLength":1030,"gzipLength":426,"brotliLength":0,"metaUid":"48ee51dd-44"},"48ee51dd-47":{"renderedLength":1131,"gzipLength":606,"brotliLength":0,"metaUid":"48ee51dd-46"},"48ee51dd-49":{"renderedLength":1115,"gzipLength":600,"brotliLength":0,"metaUid":"48ee51dd-48"},"48ee51dd-51":{"renderedLength":718,"gzipLength":404,"brotliLength":0,"metaUid":"48ee51dd-50"},"48ee51dd-53":{"renderedLength":967,"gzipLength":507,"brotliLength":0,"metaUid":"48ee51dd-52"},"48ee51dd-55":{"renderedLength":680,"gzipLength":373,"brotliLength":0,"metaUid":"48ee51dd-54"},"48ee51dd-57":{"renderedLength":662,"gzipLength":371,"brotliLength":0,"metaUid":"48ee51dd-56"},"48ee51dd-59":{"renderedLength":1641,"gzipLength":677,"brotliLength":0,"metaUid":"48ee51dd-58"},"48ee51dd-61":{"renderedLength":839,"gzipLength":451,"brotliLength":0,"metaUid":"48ee51dd-60"},"48ee51dd-63":{"renderedLength":617,"gzipLength":408,"brotliLength":0,"metaUid":"48ee51dd-62"},"48ee51dd-65":{"renderedLength":1068,"gzipLength":555,"brotliLength":0,"metaUid":"48ee51dd-64"},"48ee51dd-67":{"renderedLength":2970,"gzipLength":1092,"brotliLength":0,"metaUid":"48ee51dd-66"},"48ee51dd-69":{"renderedLength":748,"gzipLength":411,"brotliLength":0,"metaUid":"48ee51dd-68"},"48ee51dd-71":{"renderedLength":825,"gzipLength":454,"brotliLength":0,"metaUid":"48ee51dd-70"},"48ee51dd-73":{"renderedLength":2929,"gzipLength":1090,"brotliLength":0,"metaUid":"48ee51dd-72"},"48ee51dd-75":{"renderedLength":780,"gzipLength":414,"brotliLength":0,"metaUid":"48ee51dd-74"},"48ee51dd-77":{"renderedLength":1844,"gzipLength":792,"brotliLength":0,"metaUid":"48ee51dd-76"},"48ee51dd-79":{"renderedLength":707,"gzipLength":396,"brotliLength":0,"metaUid":"48ee51dd-78"},"48ee51dd-81":{"renderedLength":636,"gzipLength":427,"brotliLength":0,"metaUid":"48ee51dd-80"},"48ee51dd-83":{"renderedLength":947,"gzipLength":492,"brotliLength":0,"metaUid":"48ee51dd-82"},"48ee51dd-85":{"renderedLength":696,"gzipLength":431,"brotliLength":0,"metaUid":"48ee51dd-84"},"48ee51dd-87":{"renderedLength":1232,"gzipLength":600,"brotliLength":0,"metaUid":"48ee51dd-86"},"48ee51dd-89":{"renderedLength":1354,"gzipLength":683,"brotliLength":0,"metaUid":"48ee51dd-88"},"48ee51dd-91":{"renderedLength":1161,"gzipLength":580,"brotliLength":0,"metaUid":"48ee51dd-90"},"48ee51dd-93":{"renderedLength":1450,"gzipLength":617,"brotliLength":0,"metaUid":"48ee51dd-92"},"48ee51dd-95":{"renderedLength":686,"gzipLength":396,"brotliLength":0,"metaUid":"48ee51dd-94"},"48ee51dd-97":{"renderedLength":821,"gzipLength":440,"brotliLength":0,"metaUid":"48ee51dd-96"},"48ee51dd-99":{"renderedLength":1217,"gzipLength":514,"brotliLength":0,"metaUid":"48ee51dd-98"},"48ee51dd-101":{"renderedLength":1620,"gzipLength":821,"brotliLength":0,"metaUid":"48ee51dd-100"},"48ee51dd-103":{"renderedLength":1348,"gzipLength":652,"brotliLength":0,"metaUid":"48ee51dd-102"},"48ee51dd-105":{"renderedLength":1751,"gzipLength":718,"brotliLength":0,"metaUid":"48ee51dd-104"},"48ee51dd-107":{"renderedLength":1280,"gzipLength":561,"brotliLength":0,"metaUid":"48ee51dd-106"},"48ee51dd-109":{"renderedLength":1247,"gzipLength":642,"brotliLength":0,"metaUid":"48ee51dd-108"},"48ee51dd-111":{"renderedLength":4152,"gzipLength":1167,"brotliLength":0,"metaUid":"48ee51dd-110"},"48ee51dd-113":{"renderedLength":2081,"gzipLength":873,"brotliLength":0,"metaUid":"48ee51dd-112"},"48ee51dd-115":{"renderedLength":1126,"gzipLength":551,"brotliLength":0,"metaUid":"48ee51dd-114"},"48ee51dd-117":{"renderedLength":1062,"gzipLength":556,"brotliLength":0,"metaUid":"48ee51dd-116"},"48ee51dd-119":{"renderedLength":10576,"gzipLength":2460,"brotliLength":0,"metaUid":"48ee51dd-118"},"48ee51dd-121":{"renderedLength":1327,"gzipLength":576,"brotliLength":0,"metaUid":"48ee51dd-120"},"48ee51dd-123":{"renderedLength":979,"gzipLength":542,"brotliLength":0,"metaUid":"48ee51dd-122"},"48ee51dd-125":{"renderedLength":1122,"gzipLength":572,"brotliLength":0,"metaUid":"48ee51dd-124"},"48ee51dd-127":{"renderedLength":1445,"gzipLength":684,"brotliLength":0,"metaUid":"48ee51dd-126"},"48ee51dd-129":{"renderedLength":1104,"gzipLength":493,"brotliLength":0,"metaUid":"48ee51dd-128"},"48ee51dd-131":{"renderedLength":768,"gzipLength":452,"brotliLength":0,"metaUid":"48ee51dd-130"},"48ee51dd-133":{"renderedLength":1808,"gzipLength":767,"brotliLength":0,"metaUid":"48ee51dd-132"},"48ee51dd-135":{"renderedLength":1040,"gzipLength":503,"brotliLength":0,"metaUid":"48ee51dd-134"},"48ee51dd-137":{"renderedLength":1179,"gzipLength":613,"brotliLength":0,"metaUid":"48ee51dd-136"},"48ee51dd-139":{"renderedLength":1564,"gzipLength":613,"brotliLength":0,"metaUid":"48ee51dd-138"},"48ee51dd-141":{"renderedLength":699,"gzipLength":407,"brotliLength":0,"metaUid":"48ee51dd-140"},"48ee51dd-143":{"renderedLength":368,"gzipLength":256,"brotliLength":0,"metaUid":"48ee51dd-142"},"48ee51dd-145":{"renderedLength":1209,"gzipLength":560,"brotliLength":0,"metaUid":"48ee51dd-144"},"48ee51dd-147":{"renderedLength":4913,"gzipLength":1818,"brotliLength":0,"metaUid":"48ee51dd-146"},"48ee51dd-149":{"renderedLength":4658,"gzipLength":1481,"brotliLength":0,"metaUid":"48ee51dd-148"},"48ee51dd-151":{"renderedLength":1975,"gzipLength":729,"brotliLength":0,"metaUid":"48ee51dd-150"},"48ee51dd-153":{"renderedLength":4555,"gzipLength":1643,"brotliLength":0,"metaUid":"48ee51dd-152"},"48ee51dd-155":{"renderedLength":2740,"gzipLength":1117,"brotliLength":0,"metaUid":"48ee51dd-154"},"48ee51dd-157":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"48ee51dd-156"}},"nodeMetas":{"48ee51dd-0":{"id":"\u0000rolldown/runtime.js","moduleParts":{"index.js":"48ee51dd-1"},"imported":[],"importedBy":[]},"48ee51dd-2":{"id":"/src/cache.ts","moduleParts":{"index.js":"48ee51dd-3"},"imported":[],"importedBy":[{"uid":"48ee51dd-156"},{"uid":"48ee51dd-148"},{"uid":"48ee51dd-152"},{"uid":"48ee51dd-154"}]},"48ee51dd-4":{"id":"/src/config/ignore.ts","moduleParts":{"index.js":"48ee51dd-5"},"imported":[{"uid":"48ee51dd-158"},{"uid":"48ee51dd-159"}],"importedBy":[{"uid":"48ee51dd-156"},{"uid":"48ee51dd-148"},{"uid":"48ee51dd-154"}]},"48ee51dd-6":{"id":"/src/config/loader.ts","moduleParts":{"index.js":"48ee51dd-7"},"imported":[{"uid":"48ee51dd-158"},{"uid":"48ee51dd-159"}],"importedBy":[{"uid":"48ee51dd-156"},{"uid":"48ee51dd-148"}]},"48ee51dd-8":{"id":"/src/utils/imports.ts","moduleParts":{"index.js":"48ee51dd-9"},"imported":[],"importedBy":[{"uid":"48ee51dd-156"},{"uid":"48ee51dd-142"},{"uid":"48ee51dd-24"},{"uid":"48ee51dd-26"},{"uid":"48ee51dd-28"},{"uid":"48ee51dd-40"},{"uid":"48ee51dd-52"},{"uid":"48ee51dd-80"},{"uid":"48ee51dd-108"},{"uid":"48ee51dd-112"},{"uid":"48ee51dd-118"},{"uid":"48ee51dd-126"},{"uid":"48ee51dd-132"},{"uid":"48ee51dd-10"}]},"48ee51dd-10":{"id":"/src/utils/ast.ts","moduleParts":{"index.js":"48ee51dd-11"},"imported":[{"uid":"48ee51dd-8"}],"importedBy":[{"uid":"48ee51dd-142"},{"uid":"48ee51dd-12"},{"uid":"48ee51dd-14"},{"uid":"48ee51dd-16"},{"uid":"48ee51dd-22"},{"uid":"48ee51dd-24"},{"uid":"48ee51dd-26"},{"uid":"48ee51dd-28"},{"uid":"48ee51dd-30"},{"uid":"48ee51dd-32"},{"uid":"48ee51dd-36"},{"uid":"48ee51dd-38"},{"uid":"48ee51dd-40"},{"uid":"48ee51dd-42"},{"uid":"48ee51dd-46"},{"uid":"48ee51dd-48"},{"uid":"48ee51dd-50"},{"uid":"48ee51dd-52"},{"uid":"48ee51dd-54"},{"uid":"48ee51dd-56"},{"uid":"48ee51dd-58"},{"uid":"48ee51dd-60"},{"uid":"48ee51dd-62"},{"uid":"48ee51dd-64"},{"uid":"48ee51dd-66"},{"uid":"48ee51dd-68"},{"uid":"48ee51dd-70"},{"uid":"48ee51dd-72"},{"uid":"48ee51dd-74"},{"uid":"48ee51dd-76"},{"uid":"48ee51dd-78"},{"uid":"48ee51dd-80"},{"uid":"48ee51dd-82"},{"uid":"48ee51dd-84"},{"uid":"48ee51dd-86"},{"uid":"48ee51dd-88"},{"uid":"48ee51dd-90"},{"uid":"48ee51dd-92"},{"uid":"48ee51dd-94"},{"uid":"48ee51dd-96"},{"uid":"48ee51dd-98"},{"uid":"48ee51dd-100"},{"uid":"48ee51dd-102"},{"uid":"48ee51dd-104"},{"uid":"48ee51dd-106"},{"uid":"48ee51dd-108"},{"uid":"48ee51dd-110"},{"uid":"48ee51dd-112"},{"uid":"48ee51dd-114"},{"uid":"48ee51dd-116"},{"uid":"48ee51dd-118"},{"uid":"48ee51dd-120"},{"uid":"48ee51dd-122"},{"uid":"48ee51dd-124"},{"uid":"48ee51dd-126"},{"uid":"48ee51dd-128"},{"uid":"48ee51dd-130"},{"uid":"48ee51dd-132"},{"uid":"48ee51dd-134"}]},"48ee51dd-12":{"id":"/src/rules/accessibility/dialog-a11y.ts","moduleParts":{"index.js":"48ee51dd-13"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-14":{"id":"/src/rules/accessibility/overlay-a11y.ts","moduleParts":{"index.js":"48ee51dd-15"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-16":{"id":"/src/rules/accessibility/toast-a11y.ts","moduleParts":{"index.js":"48ee51dd-17"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-18":{"id":"/src/utils/exempt-paths.ts","moduleParts":{"index.js":"48ee51dd-19"},"imported":[],"importedBy":[{"uid":"48ee51dd-156"},{"uid":"48ee51dd-22"},{"uid":"48ee51dd-32"},{"uid":"48ee51dd-34"},{"uid":"48ee51dd-42"},{"uid":"48ee51dd-48"},{"uid":"48ee51dd-104"},{"uid":"48ee51dd-118"}]},"48ee51dd-20":{"id":"/src/utils/file-roles.ts","moduleParts":{"index.js":"48ee51dd-21"},"imported":[],"importedBy":[{"uid":"48ee51dd-156"},{"uid":"48ee51dd-22"},{"uid":"48ee51dd-24"},{"uid":"48ee51dd-32"},{"uid":"48ee51dd-36"},{"uid":"48ee51dd-38"},{"uid":"48ee51dd-122"}]},"48ee51dd-22":{"id":"/src/rules/architecture/dev-guard-warnings.ts","moduleParts":{"index.js":"48ee51dd-23"},"imported":[{"uid":"48ee51dd-10"},{"uid":"48ee51dd-18"},{"uid":"48ee51dd-20"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-24":{"id":"/src/rules/architecture/no-circular-import.ts","moduleParts":{"index.js":"48ee51dd-25"},"imported":[{"uid":"48ee51dd-10"},{"uid":"48ee51dd-8"},{"uid":"48ee51dd-20"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-26":{"id":"/src/rules/architecture/no-cross-layer-import.ts","moduleParts":{"index.js":"48ee51dd-27"},"imported":[{"uid":"48ee51dd-10"},{"uid":"48ee51dd-8"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-28":{"id":"/src/rules/architecture/no-deep-import.ts","moduleParts":{"index.js":"48ee51dd-29"},"imported":[{"uid":"48ee51dd-10"},{"uid":"48ee51dd-8"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-30":{"id":"/src/rules/architecture/no-error-without-prefix.ts","moduleParts":{"index.js":"48ee51dd-31"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-32":{"id":"/src/rules/architecture/no-process-dev-gate.ts","moduleParts":{"index.js":"48ee51dd-33"},"imported":[{"uid":"48ee51dd-10"},{"uid":"48ee51dd-18"},{"uid":"48ee51dd-20"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-34":{"id":"/src/rules/architecture/require-browser-smoke-test.ts","moduleParts":{"index.js":"48ee51dd-35"},"imported":[{"uid":"48ee51dd-158"},{"uid":"48ee51dd-159"},{"uid":"48ee51dd-18"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-36":{"id":"/src/rules/form/no-submit-without-validation.ts","moduleParts":{"index.js":"48ee51dd-37"},"imported":[{"uid":"48ee51dd-10"},{"uid":"48ee51dd-20"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-38":{"id":"/src/rules/form/no-unregistered-field.ts","moduleParts":{"index.js":"48ee51dd-39"},"imported":[{"uid":"48ee51dd-10"},{"uid":"48ee51dd-20"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-40":{"id":"/src/rules/form/prefer-field-array.ts","moduleParts":{"index.js":"48ee51dd-41"},"imported":[{"uid":"48ee51dd-10"},{"uid":"48ee51dd-8"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-42":{"id":"/src/rules/hooks/no-raw-addeventlistener.ts","moduleParts":{"index.js":"48ee51dd-43"},"imported":[{"uid":"48ee51dd-10"},{"uid":"48ee51dd-18"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-44":{"id":"/src/utils/component-context.ts","moduleParts":{"index.js":"48ee51dd-45"},"imported":[],"importedBy":[{"uid":"48ee51dd-46"},{"uid":"48ee51dd-48"},{"uid":"48ee51dd-124"},{"uid":"48ee51dd-128"}]},"48ee51dd-46":{"id":"/src/rules/hooks/no-raw-localstorage.ts","moduleParts":{"index.js":"48ee51dd-47"},"imported":[{"uid":"48ee51dd-10"},{"uid":"48ee51dd-44"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-48":{"id":"/src/rules/hooks/no-raw-setinterval.ts","moduleParts":{"index.js":"48ee51dd-49"},"imported":[{"uid":"48ee51dd-18"},{"uid":"48ee51dd-44"},{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-50":{"id":"/src/rules/jsx/no-and-conditional.ts","moduleParts":{"index.js":"48ee51dd-51"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-52":{"id":"/src/rules/jsx/no-children-access.ts","moduleParts":{"index.js":"48ee51dd-53"},"imported":[{"uid":"48ee51dd-10"},{"uid":"48ee51dd-8"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-54":{"id":"/src/rules/jsx/no-classname.ts","moduleParts":{"index.js":"48ee51dd-55"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-56":{"id":"/src/rules/jsx/no-htmlfor.ts","moduleParts":{"index.js":"48ee51dd-57"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-58":{"id":"/src/rules/jsx/no-index-as-by.ts","moduleParts":{"index.js":"48ee51dd-59"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-60":{"id":"/src/rules/jsx/no-map-in-jsx.ts","moduleParts":{"index.js":"48ee51dd-61"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-62":{"id":"/src/rules/jsx/no-missing-for-by.ts","moduleParts":{"index.js":"48ee51dd-63"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-64":{"id":"/src/rules/jsx/no-onchange.ts","moduleParts":{"index.js":"48ee51dd-65"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-66":{"id":"/src/rules/jsx/no-props-destructure.ts","moduleParts":{"index.js":"48ee51dd-67"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-68":{"id":"/src/rules/jsx/no-ternary-conditional.ts","moduleParts":{"index.js":"48ee51dd-69"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-70":{"id":"/src/rules/jsx/use-by-not-key.ts","moduleParts":{"index.js":"48ee51dd-71"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-72":{"id":"/src/rules/lifecycle/no-dom-in-setup.ts","moduleParts":{"index.js":"48ee51dd-73"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-74":{"id":"/src/rules/lifecycle/no-effect-in-mount.ts","moduleParts":{"index.js":"48ee51dd-75"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-76":{"id":"/src/rules/lifecycle/no-missing-cleanup.ts","moduleParts":{"index.js":"48ee51dd-77"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-78":{"id":"/src/rules/lifecycle/no-mount-in-effect.ts","moduleParts":{"index.js":"48ee51dd-79"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-80":{"id":"/src/rules/performance/no-eager-import.ts","moduleParts":{"index.js":"48ee51dd-81"},"imported":[{"uid":"48ee51dd-10"},{"uid":"48ee51dd-8"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-82":{"id":"/src/rules/performance/no-effect-in-for.ts","moduleParts":{"index.js":"48ee51dd-83"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-84":{"id":"/src/rules/performance/no-large-for-without-by.ts","moduleParts":{"index.js":"48ee51dd-85"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-86":{"id":"/src/rules/performance/prefer-show-over-display.ts","moduleParts":{"index.js":"48ee51dd-87"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-88":{"id":"/src/rules/reactivity/no-bare-signal-in-jsx.ts","moduleParts":{"index.js":"48ee51dd-89"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-90":{"id":"/src/rules/reactivity/no-context-destructure.ts","moduleParts":{"index.js":"48ee51dd-91"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-92":{"id":"/src/rules/reactivity/no-effect-assignment.ts","moduleParts":{"index.js":"48ee51dd-93"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-94":{"id":"/src/rules/reactivity/no-nested-effect.ts","moduleParts":{"index.js":"48ee51dd-95"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-96":{"id":"/src/rules/reactivity/no-peek-in-tracked.ts","moduleParts":{"index.js":"48ee51dd-97"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-98":{"id":"/src/rules/reactivity/no-signal-in-loop.ts","moduleParts":{"index.js":"48ee51dd-99"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-100":{"id":"/src/rules/reactivity/no-signal-in-props.ts","moduleParts":{"index.js":"48ee51dd-101"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-102":{"id":"/src/rules/reactivity/no-signal-leak.ts","moduleParts":{"index.js":"48ee51dd-103"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-104":{"id":"/src/rules/reactivity/no-unbatched-updates.ts","moduleParts":{"index.js":"48ee51dd-105"},"imported":[{"uid":"48ee51dd-10"},{"uid":"48ee51dd-18"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-106":{"id":"/src/rules/reactivity/prefer-computed.ts","moduleParts":{"index.js":"48ee51dd-107"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-108":{"id":"/src/rules/router/no-href-navigation.ts","moduleParts":{"index.js":"48ee51dd-109"},"imported":[{"uid":"48ee51dd-10"},{"uid":"48ee51dd-8"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-110":{"id":"/src/rules/router/no-imperative-navigate-in-render.ts","moduleParts":{"index.js":"48ee51dd-111"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-112":{"id":"/src/rules/router/no-missing-fallback.ts","moduleParts":{"index.js":"48ee51dd-113"},"imported":[{"uid":"48ee51dd-10"},{"uid":"48ee51dd-8"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-114":{"id":"/src/rules/router/prefer-use-is-active.ts","moduleParts":{"index.js":"48ee51dd-115"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-116":{"id":"/src/rules/ssr/no-mismatch-risk.ts","moduleParts":{"index.js":"48ee51dd-117"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-118":{"id":"/src/rules/ssr/no-window-in-ssr.ts","moduleParts":{"index.js":"48ee51dd-119"},"imported":[{"uid":"48ee51dd-10"},{"uid":"48ee51dd-18"},{"uid":"48ee51dd-8"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-120":{"id":"/src/rules/ssr/prefer-request-context.ts","moduleParts":{"index.js":"48ee51dd-121"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-122":{"id":"/src/rules/store/no-duplicate-store-id.ts","moduleParts":{"index.js":"48ee51dd-123"},"imported":[{"uid":"48ee51dd-10"},{"uid":"48ee51dd-20"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-124":{"id":"/src/rules/store/no-mutate-store-state.ts","moduleParts":{"index.js":"48ee51dd-125"},"imported":[{"uid":"48ee51dd-10"},{"uid":"48ee51dd-44"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-126":{"id":"/src/rules/store/no-store-outside-provider.ts","moduleParts":{"index.js":"48ee51dd-127"},"imported":[{"uid":"48ee51dd-10"},{"uid":"48ee51dd-8"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-128":{"id":"/src/rules/styling/no-dynamic-styled.ts","moduleParts":{"index.js":"48ee51dd-129"},"imported":[{"uid":"48ee51dd-10"},{"uid":"48ee51dd-44"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-130":{"id":"/src/rules/styling/no-inline-style-object.ts","moduleParts":{"index.js":"48ee51dd-131"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-132":{"id":"/src/rules/styling/no-theme-outside-provider.ts","moduleParts":{"index.js":"48ee51dd-133"},"imported":[{"uid":"48ee51dd-10"},{"uid":"48ee51dd-8"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-134":{"id":"/src/rules/styling/prefer-cx.ts","moduleParts":{"index.js":"48ee51dd-135"},"imported":[{"uid":"48ee51dd-10"}],"importedBy":[{"uid":"48ee51dd-136"}]},"48ee51dd-136":{"id":"/src/rules/index.ts","moduleParts":{"index.js":"48ee51dd-137"},"imported":[{"uid":"48ee51dd-12"},{"uid":"48ee51dd-14"},{"uid":"48ee51dd-16"},{"uid":"48ee51dd-22"},{"uid":"48ee51dd-24"},{"uid":"48ee51dd-26"},{"uid":"48ee51dd-28"},{"uid":"48ee51dd-30"},{"uid":"48ee51dd-32"},{"uid":"48ee51dd-34"},{"uid":"48ee51dd-36"},{"uid":"48ee51dd-38"},{"uid":"48ee51dd-40"},{"uid":"48ee51dd-42"},{"uid":"48ee51dd-46"},{"uid":"48ee51dd-48"},{"uid":"48ee51dd-50"},{"uid":"48ee51dd-52"},{"uid":"48ee51dd-54"},{"uid":"48ee51dd-56"},{"uid":"48ee51dd-58"},{"uid":"48ee51dd-60"},{"uid":"48ee51dd-62"},{"uid":"48ee51dd-64"},{"uid":"48ee51dd-66"},{"uid":"48ee51dd-68"},{"uid":"48ee51dd-70"},{"uid":"48ee51dd-72"},{"uid":"48ee51dd-74"},{"uid":"48ee51dd-76"},{"uid":"48ee51dd-78"},{"uid":"48ee51dd-80"},{"uid":"48ee51dd-82"},{"uid":"48ee51dd-84"},{"uid":"48ee51dd-86"},{"uid":"48ee51dd-88"},{"uid":"48ee51dd-90"},{"uid":"48ee51dd-92"},{"uid":"48ee51dd-94"},{"uid":"48ee51dd-96"},{"uid":"48ee51dd-98"},{"uid":"48ee51dd-100"},{"uid":"48ee51dd-102"},{"uid":"48ee51dd-104"},{"uid":"48ee51dd-106"},{"uid":"48ee51dd-108"},{"uid":"48ee51dd-110"},{"uid":"48ee51dd-112"},{"uid":"48ee51dd-114"},{"uid":"48ee51dd-116"},{"uid":"48ee51dd-118"},{"uid":"48ee51dd-120"},{"uid":"48ee51dd-122"},{"uid":"48ee51dd-124"},{"uid":"48ee51dd-126"},{"uid":"48ee51dd-128"},{"uid":"48ee51dd-130"},{"uid":"48ee51dd-132"},{"uid":"48ee51dd-134"}],"importedBy":[{"uid":"48ee51dd-156"},{"uid":"48ee51dd-138"},{"uid":"48ee51dd-148"},{"uid":"48ee51dd-152"},{"uid":"48ee51dd-154"}]},"48ee51dd-138":{"id":"/src/config/presets.ts","moduleParts":{"index.js":"48ee51dd-139"},"imported":[{"uid":"48ee51dd-136"}],"importedBy":[{"uid":"48ee51dd-156"},{"uid":"48ee51dd-148"},{"uid":"48ee51dd-152"},{"uid":"48ee51dd-154"}]},"48ee51dd-140":{"id":"/src/utils/source.ts","moduleParts":{"index.js":"48ee51dd-141"},"imported":[],"importedBy":[{"uid":"48ee51dd-156"},{"uid":"48ee51dd-146"},{"uid":"48ee51dd-142"}]},"48ee51dd-142":{"id":"/src/utils/index.ts","moduleParts":{"index.js":"48ee51dd-143"},"imported":[{"uid":"48ee51dd-10"},{"uid":"48ee51dd-8"},{"uid":"48ee51dd-140"}],"importedBy":[{"uid":"48ee51dd-148"},{"uid":"48ee51dd-146"},{"uid":"48ee51dd-154"}]},"48ee51dd-144":{"id":"/src/utils/validate-options.ts","moduleParts":{"index.js":"48ee51dd-145"},"imported":[],"importedBy":[{"uid":"48ee51dd-146"}]},"48ee51dd-146":{"id":"/src/runner.ts","moduleParts":{"index.js":"48ee51dd-147"},"imported":[{"uid":"48ee51dd-160"},{"uid":"48ee51dd-142"},{"uid":"48ee51dd-140"},{"uid":"48ee51dd-144"}],"importedBy":[{"uid":"48ee51dd-156"},{"uid":"48ee51dd-148"},{"uid":"48ee51dd-152"},{"uid":"48ee51dd-154"}]},"48ee51dd-148":{"id":"/src/lint.ts","moduleParts":{"index.js":"48ee51dd-149"},"imported":[{"uid":"48ee51dd-158"},{"uid":"48ee51dd-159"},{"uid":"48ee51dd-2"},{"uid":"48ee51dd-4"},{"uid":"48ee51dd-6"},{"uid":"48ee51dd-138"},{"uid":"48ee51dd-136"},{"uid":"48ee51dd-146"},{"uid":"48ee51dd-142"}],"importedBy":[{"uid":"48ee51dd-156"}]},"48ee51dd-150":{"id":"/src/reporter.ts","moduleParts":{"index.js":"48ee51dd-151"},"imported":[],"importedBy":[{"uid":"48ee51dd-156"},{"uid":"48ee51dd-154"}]},"48ee51dd-152":{"id":"/src/lsp/index.ts","moduleParts":{"index.js":"48ee51dd-153"},"imported":[{"uid":"48ee51dd-2"},{"uid":"48ee51dd-138"},{"uid":"48ee51dd-136"},{"uid":"48ee51dd-146"}],"importedBy":[{"uid":"48ee51dd-156"}]},"48ee51dd-154":{"id":"/src/watcher.ts","moduleParts":{"index.js":"48ee51dd-155"},"imported":[{"uid":"48ee51dd-158"},{"uid":"48ee51dd-159"},{"uid":"48ee51dd-2"},{"uid":"48ee51dd-4"},{"uid":"48ee51dd-138"},{"uid":"48ee51dd-150"},{"uid":"48ee51dd-136"},{"uid":"48ee51dd-146"},{"uid":"48ee51dd-142"}],"importedBy":[{"uid":"48ee51dd-156"}]},"48ee51dd-156":{"id":"/src/index.ts","moduleParts":{"index.js":"48ee51dd-157"},"imported":[{"uid":"48ee51dd-2"},{"uid":"48ee51dd-4"},{"uid":"48ee51dd-6"},{"uid":"48ee51dd-138"},{"uid":"48ee51dd-148"},{"uid":"48ee51dd-150"},{"uid":"48ee51dd-152"},{"uid":"48ee51dd-136"},{"uid":"48ee51dd-146"},{"uid":"48ee51dd-18"},{"uid":"48ee51dd-20"},{"uid":"48ee51dd-8"},{"uid":"48ee51dd-140"},{"uid":"48ee51dd-154"}],"importedBy":[],"isEntry":true},"48ee51dd-158":{"id":"node:fs","moduleParts":{},"imported":[],"importedBy":[{"uid":"48ee51dd-4"},{"uid":"48ee51dd-6"},{"uid":"48ee51dd-148"},{"uid":"48ee51dd-154"},{"uid":"48ee51dd-34"}]},"48ee51dd-159":{"id":"node:path","moduleParts":{},"imported":[],"importedBy":[{"uid":"48ee51dd-4"},{"uid":"48ee51dd-6"},{"uid":"48ee51dd-148"},{"uid":"48ee51dd-154"},{"uid":"48ee51dd-34"}]},"48ee51dd-160":{"id":"oxc-parser","moduleParts":{},"imported":[],"importedBy":[{"uid":"48ee51dd-146"}]}},"env":{"rollup":"4.23.0"},"options":{"gzip":true,"brotli":false,"sourcemap":false}};
|
|
5390
5390
|
|
|
5391
5391
|
const run = () => {
|
|
5392
5392
|
const width = window.innerWidth;
|