@pyreon/lint 0.11.5 → 0.11.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (86) hide show
  1. package/README.md +91 -91
  2. package/lib/analysis/cli.js.html +1 -1
  3. package/lib/analysis/index.js.html +1 -1
  4. package/lib/cli.js +214 -1
  5. package/lib/cli.js.map +1 -1
  6. package/lib/index.js +207 -1
  7. package/lib/index.js.map +1 -1
  8. package/lib/types/index.d.ts +30 -5
  9. package/lib/types/index.d.ts.map +1 -1
  10. package/package.json +15 -15
  11. package/src/cache.ts +1 -1
  12. package/src/cli.ts +38 -28
  13. package/src/config/ignore.ts +23 -23
  14. package/src/config/loader.ts +8 -8
  15. package/src/config/presets.ts +11 -11
  16. package/src/index.ts +14 -12
  17. package/src/lint.ts +19 -19
  18. package/src/lsp/index.ts +225 -0
  19. package/src/reporter.ts +17 -17
  20. package/src/rules/accessibility/dialog-a11y.ts +10 -10
  21. package/src/rules/accessibility/overlay-a11y.ts +11 -11
  22. package/src/rules/accessibility/toast-a11y.ts +11 -11
  23. package/src/rules/architecture/dev-guard-warnings.ts +19 -19
  24. package/src/rules/architecture/no-circular-import.ts +16 -16
  25. package/src/rules/architecture/no-cross-layer-import.ts +35 -35
  26. package/src/rules/architecture/no-deep-import.ts +7 -7
  27. package/src/rules/architecture/no-error-without-prefix.ts +20 -20
  28. package/src/rules/form/no-submit-without-validation.ts +13 -13
  29. package/src/rules/form/no-unregistered-field.ts +12 -12
  30. package/src/rules/form/prefer-field-array.ts +11 -11
  31. package/src/rules/hooks/no-raw-addeventlistener.ts +9 -9
  32. package/src/rules/hooks/no-raw-localstorage.ts +11 -11
  33. package/src/rules/hooks/no-raw-setinterval.ts +11 -11
  34. package/src/rules/index.ts +60 -57
  35. package/src/rules/jsx/no-and-conditional.ts +8 -8
  36. package/src/rules/jsx/no-children-access.ts +12 -12
  37. package/src/rules/jsx/no-classname.ts +10 -10
  38. package/src/rules/jsx/no-htmlfor.ts +10 -10
  39. package/src/rules/jsx/no-index-as-by.ts +17 -17
  40. package/src/rules/jsx/no-map-in-jsx.ts +9 -9
  41. package/src/rules/jsx/no-missing-for-by.ts +9 -9
  42. package/src/rules/jsx/no-onchange.ts +12 -12
  43. package/src/rules/jsx/no-props-destructure.ts +11 -11
  44. package/src/rules/jsx/no-ternary-conditional.ts +8 -8
  45. package/src/rules/jsx/use-by-not-key.ts +12 -12
  46. package/src/rules/lifecycle/no-dom-in-setup.ts +18 -18
  47. package/src/rules/lifecycle/no-effect-in-mount.ts +11 -11
  48. package/src/rules/lifecycle/no-missing-cleanup.ts +19 -19
  49. package/src/rules/lifecycle/no-mount-in-effect.ts +11 -11
  50. package/src/rules/performance/no-eager-import.ts +7 -7
  51. package/src/rules/performance/no-effect-in-for.ts +10 -10
  52. package/src/rules/performance/no-large-for-without-by.ts +9 -9
  53. package/src/rules/performance/prefer-show-over-display.ts +16 -16
  54. package/src/rules/reactivity/no-bare-signal-in-jsx.ts +10 -10
  55. package/src/rules/reactivity/no-context-destructure.ts +45 -0
  56. package/src/rules/reactivity/no-effect-assignment.ts +16 -16
  57. package/src/rules/reactivity/no-nested-effect.ts +10 -10
  58. package/src/rules/reactivity/no-peek-in-tracked.ts +10 -10
  59. package/src/rules/reactivity/no-signal-in-loop.ts +13 -13
  60. package/src/rules/reactivity/no-signal-leak.ts +9 -9
  61. package/src/rules/reactivity/no-unbatched-updates.ts +12 -12
  62. package/src/rules/reactivity/prefer-computed.ts +13 -13
  63. package/src/rules/router/index.ts +4 -4
  64. package/src/rules/router/no-href-navigation.ts +14 -14
  65. package/src/rules/router/no-imperative-navigate-in-render.ts +19 -19
  66. package/src/rules/router/no-missing-fallback.ts +16 -16
  67. package/src/rules/router/prefer-use-is-active.ts +11 -11
  68. package/src/rules/ssr/no-mismatch-risk.ts +11 -11
  69. package/src/rules/ssr/no-window-in-ssr.ts +22 -22
  70. package/src/rules/ssr/prefer-request-context.ts +14 -14
  71. package/src/rules/store/no-duplicate-store-id.ts +9 -9
  72. package/src/rules/store/no-mutate-store-state.ts +11 -11
  73. package/src/rules/store/no-store-outside-provider.ts +15 -15
  74. package/src/rules/styling/no-dynamic-styled.ts +13 -13
  75. package/src/rules/styling/no-inline-style-object.ts +10 -10
  76. package/src/rules/styling/no-theme-outside-provider.ts +11 -11
  77. package/src/rules/styling/prefer-cx.ts +12 -12
  78. package/src/runner.ts +13 -13
  79. package/src/tests/lsp.test.ts +88 -0
  80. package/src/tests/runner.test.ts +325 -325
  81. package/src/types.ts +15 -15
  82. package/src/utils/ast.ts +50 -50
  83. package/src/utils/imports.ts +53 -53
  84. package/src/utils/index.ts +5 -5
  85. package/src/utils/source.ts +2 -2
  86. package/src/watcher.ts +19 -19
package/README.md CHANGED
@@ -41,12 +41,12 @@ pyreon-lint --list
41
41
  ### Programmatic API
42
42
 
43
43
  ```ts
44
- import { lint, listRules, lintFile, applyFixes } from "@pyreon/lint"
44
+ import { lint, listRules, lintFile, applyFixes } from '@pyreon/lint'
45
45
 
46
46
  // Lint files
47
47
  const result = lint({
48
- paths: ["src/"],
49
- preset: "recommended",
48
+ paths: ['src/'],
49
+ preset: 'recommended',
50
50
  fix: false,
51
51
  quiet: false,
52
52
  })
@@ -59,140 +59,140 @@ for (const rule of listRules()) {
59
59
  }
60
60
 
61
61
  // Lint a single source string
62
- import { getPreset } from "@pyreon/lint"
63
- import { allRules } from "@pyreon/lint/rules"
62
+ import { getPreset } from '@pyreon/lint'
63
+ import { allRules } from '@pyreon/lint/rules'
64
64
 
65
- const fileResult = lintFile("app.tsx", source, allRules, getPreset("recommended"))
65
+ const fileResult = lintFile('app.tsx', source, allRules, getPreset('recommended'))
66
66
  ```
67
67
 
68
68
  ## Rules (51)
69
69
 
70
70
  ### Reactivity (8)
71
71
 
72
- | Rule | Severity | Fixable | Description |
73
- |------|----------|---------|-------------|
74
- | `pyreon/no-bare-signal-in-jsx` | error | Yes | Flags `{count()}` in JSX text — wrap in `() =>` |
75
- | `pyreon/no-signal-in-loop` | error | No | Flags signal()/computed() inside loops |
76
- | `pyreon/no-nested-effect` | warn | No | Flags effect() inside effect() |
77
- | `pyreon/no-peek-in-tracked` | error | No | Flags .peek() inside effect/computed |
78
- | `pyreon/no-unbatched-updates` | warn | No | Flags 3+ .set() calls without batch() |
79
- | `pyreon/prefer-computed` | warn | No | Suggests computed() for effect with single .set() |
80
- | `pyreon/no-effect-assignment` | warn | No | Flags effect with single .update() |
81
- | `pyreon/no-signal-leak` | warn | No | Reports unused signal declarations |
72
+ | Rule | Severity | Fixable | Description |
73
+ | ------------------------------ | -------- | ------- | ------------------------------------------------- |
74
+ | `pyreon/no-bare-signal-in-jsx` | error | Yes | Flags `{count()}` in JSX text — wrap in `() =>` |
75
+ | `pyreon/no-signal-in-loop` | error | No | Flags signal()/computed() inside loops |
76
+ | `pyreon/no-nested-effect` | warn | No | Flags effect() inside effect() |
77
+ | `pyreon/no-peek-in-tracked` | error | No | Flags .peek() inside effect/computed |
78
+ | `pyreon/no-unbatched-updates` | warn | No | Flags 3+ .set() calls without batch() |
79
+ | `pyreon/prefer-computed` | warn | No | Suggests computed() for effect with single .set() |
80
+ | `pyreon/no-effect-assignment` | warn | No | Flags effect with single .update() |
81
+ | `pyreon/no-signal-leak` | warn | No | Reports unused signal declarations |
82
82
 
83
83
  ### JSX (11)
84
84
 
85
- | Rule | Severity | Fixable | Description |
86
- |------|----------|---------|-------------|
87
- | `pyreon/no-map-in-jsx` | warn | No | Prefer `<For>` over .map() in JSX |
88
- | `pyreon/use-by-not-key` | error | Yes | Use `by` not `key` on `<For>` |
89
- | `pyreon/no-classname` | error | Yes | Use `class` not `className` |
90
- | `pyreon/no-htmlfor` | error | Yes | Use `for` not `htmlFor` |
91
- | `pyreon/no-onchange` | warn | Yes | Prefer `onInput` over `onChange` on inputs |
92
- | `pyreon/no-ternary-conditional` | warn | No | Prefer `<Show>` over ternary with JSX |
93
- | `pyreon/no-and-conditional` | warn | No | Prefer `<Show>` over `&&` with JSX |
94
- | `pyreon/no-index-as-by` | warn | No | Don't use index as `by` prop |
95
- | `pyreon/no-missing-for-by` | warn | No | `<For>` should have `by` prop |
96
- | `pyreon/no-props-destructure` | error | No | Don't destructure component props |
97
- | `pyreon/no-children-access` | info | No | Direct props.children access in renderers |
85
+ | Rule | Severity | Fixable | Description |
86
+ | ------------------------------- | -------- | ------- | ------------------------------------------ |
87
+ | `pyreon/no-map-in-jsx` | warn | No | Prefer `<For>` over .map() in JSX |
88
+ | `pyreon/use-by-not-key` | error | Yes | Use `by` not `key` on `<For>` |
89
+ | `pyreon/no-classname` | error | Yes | Use `class` not `className` |
90
+ | `pyreon/no-htmlfor` | error | Yes | Use `for` not `htmlFor` |
91
+ | `pyreon/no-onchange` | warn | Yes | Prefer `onInput` over `onChange` on inputs |
92
+ | `pyreon/no-ternary-conditional` | warn | No | Prefer `<Show>` over ternary with JSX |
93
+ | `pyreon/no-and-conditional` | warn | No | Prefer `<Show>` over `&&` with JSX |
94
+ | `pyreon/no-index-as-by` | warn | No | Don't use index as `by` prop |
95
+ | `pyreon/no-missing-for-by` | warn | No | `<For>` should have `by` prop |
96
+ | `pyreon/no-props-destructure` | error | No | Don't destructure component props |
97
+ | `pyreon/no-children-access` | info | No | Direct props.children access in renderers |
98
98
 
99
99
  ### Lifecycle (4)
100
100
 
101
- | Rule | Severity | Fixable | Description |
102
- |------|----------|---------|-------------|
103
- | `pyreon/no-missing-cleanup` | warn | No | onMount with timers needs cleanup return |
104
- | `pyreon/no-mount-in-effect` | warn | No | Don't call onMount inside effect |
105
- | `pyreon/no-effect-in-mount` | info | No | effect() inside onMount is unusual |
106
- | `pyreon/no-dom-in-setup` | warn | No | DOM queries outside onMount/effect |
101
+ | Rule | Severity | Fixable | Description |
102
+ | --------------------------- | -------- | ------- | ---------------------------------------- |
103
+ | `pyreon/no-missing-cleanup` | warn | No | onMount with timers needs cleanup return |
104
+ | `pyreon/no-mount-in-effect` | warn | No | Don't call onMount inside effect |
105
+ | `pyreon/no-effect-in-mount` | info | No | effect() inside onMount is unusual |
106
+ | `pyreon/no-dom-in-setup` | warn | No | DOM queries outside onMount/effect |
107
107
 
108
108
  ### Performance (4)
109
109
 
110
- | Rule | Severity | Fixable | Description |
111
- |------|----------|---------|-------------|
112
- | `pyreon/no-large-for-without-by` | error | No | `<For>` must have `by` for reconciliation |
113
- | `pyreon/no-effect-in-for` | warn | No | Don't create effects inside `<For>` |
114
- | `pyreon/no-eager-import` | info | No | Lazy-load heavy packages |
115
- | `pyreon/prefer-show-over-display` | info | No | Use `<Show>` instead of CSS display toggle |
110
+ | Rule | Severity | Fixable | Description |
111
+ | --------------------------------- | -------- | ------- | ------------------------------------------ |
112
+ | `pyreon/no-large-for-without-by` | error | No | `<For>` must have `by` for reconciliation |
113
+ | `pyreon/no-effect-in-for` | warn | No | Don't create effects inside `<For>` |
114
+ | `pyreon/no-eager-import` | info | No | Lazy-load heavy packages |
115
+ | `pyreon/prefer-show-over-display` | info | No | Use `<Show>` instead of CSS display toggle |
116
116
 
117
117
  ### SSR (3)
118
118
 
119
- | Rule | Severity | Fixable | Description |
120
- |------|----------|---------|-------------|
121
- | `pyreon/no-window-in-ssr` | error | No | Browser globals outside safe scopes |
122
- | `pyreon/no-mismatch-risk` | warn | No | Non-deterministic calls in JSX |
123
- | `pyreon/prefer-request-context` | warn | No | Module-level state in server files |
119
+ | Rule | Severity | Fixable | Description |
120
+ | ------------------------------- | -------- | ------- | ----------------------------------- |
121
+ | `pyreon/no-window-in-ssr` | error | No | Browser globals outside safe scopes |
122
+ | `pyreon/no-mismatch-risk` | warn | No | Non-deterministic calls in JSX |
123
+ | `pyreon/prefer-request-context` | warn | No | Module-level state in server files |
124
124
 
125
125
  ### Architecture (5)
126
126
 
127
- | Rule | Severity | Fixable | Description |
128
- |------|----------|---------|-------------|
129
- | `pyreon/no-circular-import` | error | No | Enforce package layer order |
130
- | `pyreon/no-deep-import` | warn | No | No @pyreon/*/src/ imports |
131
- | `pyreon/no-cross-layer-import` | error | No | Core can't import ui-system |
132
- | `pyreon/dev-guard-warnings` | error | No | console.warn/error needs `__DEV__` |
133
- | `pyreon/no-error-without-prefix` | warn | Yes | Errors need [Pyreon] prefix |
127
+ | Rule | Severity | Fixable | Description |
128
+ | -------------------------------- | -------- | ------- | ---------------------------------- |
129
+ | `pyreon/no-circular-import` | error | No | Enforce package layer order |
130
+ | `pyreon/no-deep-import` | warn | No | No @pyreon/\*/src/ imports |
131
+ | `pyreon/no-cross-layer-import` | error | No | Core can't import ui-system |
132
+ | `pyreon/dev-guard-warnings` | error | No | console.warn/error needs `__DEV__` |
133
+ | `pyreon/no-error-without-prefix` | warn | Yes | Errors need [Pyreon] prefix |
134
134
 
135
135
  ### Store (3)
136
136
 
137
- | Rule | Severity | Fixable | Description |
138
- |------|----------|---------|-------------|
139
- | `pyreon/no-store-outside-provider` | warn | No | Store hooks need provider in SSR |
140
- | `pyreon/no-mutate-store-state` | warn | No | Use actions, not direct .set() |
141
- | `pyreon/no-duplicate-store-id` | error | No | Unique defineStore() IDs |
137
+ | Rule | Severity | Fixable | Description |
138
+ | ---------------------------------- | -------- | ------- | -------------------------------- |
139
+ | `pyreon/no-store-outside-provider` | warn | No | Store hooks need provider in SSR |
140
+ | `pyreon/no-mutate-store-state` | warn | No | Use actions, not direct .set() |
141
+ | `pyreon/no-duplicate-store-id` | error | No | Unique defineStore() IDs |
142
142
 
143
143
  ### Form (3)
144
144
 
145
- | Rule | Severity | Fixable | Description |
146
- |------|----------|---------|-------------|
147
- | `pyreon/no-unregistered-field` | warn | No | useField() without register() |
148
- | `pyreon/no-submit-without-validation` | warn | No | useForm onSubmit without validators |
149
- | `pyreon/prefer-field-array` | info | No | signal([]) in form files |
145
+ | Rule | Severity | Fixable | Description |
146
+ | ------------------------------------- | -------- | ------- | ----------------------------------- |
147
+ | `pyreon/no-unregistered-field` | warn | No | useField() without register() |
148
+ | `pyreon/no-submit-without-validation` | warn | No | useForm onSubmit without validators |
149
+ | `pyreon/prefer-field-array` | info | No | signal([]) in form files |
150
150
 
151
151
  ### Styling (4)
152
152
 
153
- | Rule | Severity | Fixable | Description |
154
- |------|----------|---------|-------------|
155
- | `pyreon/no-inline-style-object` | warn | No | Inline style objects in JSX |
156
- | `pyreon/no-dynamic-styled` | warn | No | styled() inside functions |
157
- | `pyreon/prefer-cx` | info | No | Use cx() for class composition |
158
- | `pyreon/no-theme-outside-provider` | warn | No | useTheme() without provider |
153
+ | Rule | Severity | Fixable | Description |
154
+ | ---------------------------------- | -------- | ------- | ------------------------------ |
155
+ | `pyreon/no-inline-style-object` | warn | No | Inline style objects in JSX |
156
+ | `pyreon/no-dynamic-styled` | warn | No | styled() inside functions |
157
+ | `pyreon/prefer-cx` | info | No | Use cx() for class composition |
158
+ | `pyreon/no-theme-outside-provider` | warn | No | useTheme() without provider |
159
159
 
160
160
  ### Hooks (3)
161
161
 
162
- | Rule | Severity | Fixable | Description |
163
- |------|----------|---------|-------------|
164
- | `pyreon/no-raw-addeventlistener` | info | No | Use useEventListener() |
165
- | `pyreon/no-raw-setinterval` | info | No | Wrap timers in onMount |
166
- | `pyreon/no-raw-localstorage` | info | No | Use useStorage() |
162
+ | Rule | Severity | Fixable | Description |
163
+ | -------------------------------- | -------- | ------- | ---------------------- |
164
+ | `pyreon/no-raw-addeventlistener` | info | No | Use useEventListener() |
165
+ | `pyreon/no-raw-setinterval` | info | No | Wrap timers in onMount |
166
+ | `pyreon/no-raw-localstorage` | info | No | Use useStorage() |
167
167
 
168
168
  ### Accessibility (3)
169
169
 
170
- | Rule | Severity | Fixable | Description |
171
- |------|----------|---------|-------------|
172
- | `pyreon/toast-a11y` | warn | No | Toast components need role/aria-live |
173
- | `pyreon/dialog-a11y` | warn | No | `<dialog>` needs aria-label |
174
- | `pyreon/overlay-a11y` | warn | No | `<Overlay>` needs role/aria-label |
170
+ | Rule | Severity | Fixable | Description |
171
+ | --------------------- | -------- | ------- | ------------------------------------ |
172
+ | `pyreon/toast-a11y` | warn | No | Toast components need role/aria-live |
173
+ | `pyreon/dialog-a11y` | warn | No | `<dialog>` needs aria-label |
174
+ | `pyreon/overlay-a11y` | warn | No | `<Overlay>` needs role/aria-label |
175
175
 
176
176
  ## Presets
177
177
 
178
- | Preset | Description |
179
- |--------|-------------|
180
- | `recommended` | All rules at default severity |
181
- | `strict` | All warnings promoted to errors |
182
- | `app` | Recommended minus library-only rules |
183
- | `lib` | Strict plus architecture checks |
178
+ | Preset | Description |
179
+ | ------------- | ------------------------------------ |
180
+ | `recommended` | All rules at default severity |
181
+ | `strict` | All warnings promoted to errors |
182
+ | `app` | Recommended minus library-only rules |
183
+ | `lib` | Strict plus architecture checks |
184
184
 
185
185
  ## Custom Rules
186
186
 
187
187
  ```ts
188
- import type { Rule } from "@pyreon/lint"
188
+ import type { Rule } from '@pyreon/lint'
189
189
 
190
190
  const myRule: Rule = {
191
191
  meta: {
192
- id: "custom/my-rule",
193
- category: "reactivity",
194
- description: "My custom rule",
195
- severity: "warn",
192
+ id: 'custom/my-rule',
193
+ category: 'reactivity',
194
+ description: 'My custom rule',
195
+ severity: 'warn',
196
196
  fixable: false,
197
197
  },
198
198
  create(context) {
@@ -200,7 +200,7 @@ const myRule: Rule = {
200
200
  CallExpression(node, parent) {
201
201
  // Your rule logic
202
202
  context.report({
203
- message: "Something is wrong",
203
+ message: 'Something is wrong',
204
204
  span: { start: node.start, end: node.end },
205
205
  })
206
206
  },
@@ -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":"25dbf10b-1","name":"cache.ts"},{"name":"config","children":[{"uid":"25dbf10b-3","name":"ignore.ts"},{"uid":"25dbf10b-5","name":"loader.ts"},{"uid":"25dbf10b-123","name":"presets.ts"}]},{"name":"utils","children":[{"uid":"25dbf10b-7","name":"imports.ts"},{"uid":"25dbf10b-9","name":"ast.ts"},{"uid":"25dbf10b-125","name":"source.ts"},{"uid":"25dbf10b-127","name":"index.ts"}]},{"name":"rules","children":[{"name":"accessibility","children":[{"uid":"25dbf10b-11","name":"dialog-a11y.ts"},{"uid":"25dbf10b-13","name":"overlay-a11y.ts"},{"uid":"25dbf10b-15","name":"toast-a11y.ts"}]},{"name":"architecture","children":[{"uid":"25dbf10b-17","name":"dev-guard-warnings.ts"},{"uid":"25dbf10b-19","name":"no-circular-import.ts"},{"uid":"25dbf10b-21","name":"no-cross-layer-import.ts"},{"uid":"25dbf10b-23","name":"no-deep-import.ts"},{"uid":"25dbf10b-25","name":"no-error-without-prefix.ts"}]},{"name":"form","children":[{"uid":"25dbf10b-27","name":"no-submit-without-validation.ts"},{"uid":"25dbf10b-29","name":"no-unregistered-field.ts"},{"uid":"25dbf10b-31","name":"prefer-field-array.ts"}]},{"name":"hooks","children":[{"uid":"25dbf10b-33","name":"no-raw-addeventlistener.ts"},{"uid":"25dbf10b-35","name":"no-raw-localstorage.ts"},{"uid":"25dbf10b-37","name":"no-raw-setinterval.ts"}]},{"name":"jsx","children":[{"uid":"25dbf10b-39","name":"no-and-conditional.ts"},{"uid":"25dbf10b-41","name":"no-children-access.ts"},{"uid":"25dbf10b-43","name":"no-classname.ts"},{"uid":"25dbf10b-45","name":"no-htmlfor.ts"},{"uid":"25dbf10b-47","name":"no-index-as-by.ts"},{"uid":"25dbf10b-49","name":"no-map-in-jsx.ts"},{"uid":"25dbf10b-51","name":"no-missing-for-by.ts"},{"uid":"25dbf10b-53","name":"no-onchange.ts"},{"uid":"25dbf10b-55","name":"no-props-destructure.ts"},{"uid":"25dbf10b-57","name":"no-ternary-conditional.ts"},{"uid":"25dbf10b-59","name":"use-by-not-key.ts"}]},{"name":"lifecycle","children":[{"uid":"25dbf10b-61","name":"no-dom-in-setup.ts"},{"uid":"25dbf10b-63","name":"no-effect-in-mount.ts"},{"uid":"25dbf10b-65","name":"no-missing-cleanup.ts"},{"uid":"25dbf10b-67","name":"no-mount-in-effect.ts"}]},{"name":"performance","children":[{"uid":"25dbf10b-69","name":"no-eager-import.ts"},{"uid":"25dbf10b-71","name":"no-effect-in-for.ts"},{"uid":"25dbf10b-73","name":"no-large-for-without-by.ts"},{"uid":"25dbf10b-75","name":"prefer-show-over-display.ts"}]},{"name":"reactivity","children":[{"uid":"25dbf10b-77","name":"no-bare-signal-in-jsx.ts"},{"uid":"25dbf10b-79","name":"no-effect-assignment.ts"},{"uid":"25dbf10b-81","name":"no-nested-effect.ts"},{"uid":"25dbf10b-83","name":"no-peek-in-tracked.ts"},{"uid":"25dbf10b-85","name":"no-signal-in-loop.ts"},{"uid":"25dbf10b-87","name":"no-signal-leak.ts"},{"uid":"25dbf10b-89","name":"no-unbatched-updates.ts"},{"uid":"25dbf10b-91","name":"prefer-computed.ts"}]},{"name":"router","children":[{"uid":"25dbf10b-93","name":"no-href-navigation.ts"},{"uid":"25dbf10b-95","name":"no-imperative-navigate-in-render.ts"},{"uid":"25dbf10b-97","name":"no-missing-fallback.ts"},{"uid":"25dbf10b-99","name":"prefer-use-is-active.ts"}]},{"name":"ssr","children":[{"uid":"25dbf10b-101","name":"no-mismatch-risk.ts"},{"uid":"25dbf10b-103","name":"no-window-in-ssr.ts"},{"uid":"25dbf10b-105","name":"prefer-request-context.ts"}]},{"name":"store","children":[{"uid":"25dbf10b-107","name":"no-duplicate-store-id.ts"},{"uid":"25dbf10b-109","name":"no-mutate-store-state.ts"},{"uid":"25dbf10b-111","name":"no-store-outside-provider.ts"}]},{"name":"styling","children":[{"uid":"25dbf10b-113","name":"no-dynamic-styled.ts"},{"uid":"25dbf10b-115","name":"no-inline-style-object.ts"},{"uid":"25dbf10b-117","name":"no-theme-outside-provider.ts"},{"uid":"25dbf10b-119","name":"prefer-cx.ts"}]},{"uid":"25dbf10b-121","name":"index.ts"}]},{"uid":"25dbf10b-129","name":"runner.ts"},{"uid":"25dbf10b-131","name":"lint.ts"},{"uid":"25dbf10b-133","name":"reporter.ts"},{"uid":"25dbf10b-135","name":"watcher.ts"},{"uid":"25dbf10b-137","name":"cli.ts"}]}]}],"isRoot":true},"nodeParts":{"25dbf10b-1":{"renderedLength":1035,"gzipLength":568,"brotliLength":0,"metaUid":"25dbf10b-0"},"25dbf10b-3":{"renderedLength":3011,"gzipLength":1239,"brotliLength":0,"metaUid":"25dbf10b-2"},"25dbf10b-5":{"renderedLength":1626,"gzipLength":713,"brotliLength":0,"metaUid":"25dbf10b-4"},"25dbf10b-7":{"renderedLength":1524,"gzipLength":647,"brotliLength":0,"metaUid":"25dbf10b-6"},"25dbf10b-9":{"renderedLength":2849,"gzipLength":776,"brotliLength":0,"metaUid":"25dbf10b-8"},"25dbf10b-11":{"renderedLength":775,"gzipLength":445,"brotliLength":0,"metaUid":"25dbf10b-10"},"25dbf10b-13":{"renderedLength":864,"gzipLength":470,"brotliLength":0,"metaUid":"25dbf10b-12"},"25dbf10b-15":{"renderedLength":1014,"gzipLength":554,"brotliLength":0,"metaUid":"25dbf10b-14"},"25dbf10b-17":{"renderedLength":1384,"gzipLength":617,"brotliLength":0,"metaUid":"25dbf10b-16"},"25dbf10b-19":{"renderedLength":1388,"gzipLength":674,"brotliLength":0,"metaUid":"25dbf10b-18"},"25dbf10b-21":{"renderedLength":1688,"gzipLength":687,"brotliLength":0,"metaUid":"25dbf10b-20"},"25dbf10b-23":{"renderedLength":710,"gzipLength":443,"brotliLength":0,"metaUid":"25dbf10b-22"},"25dbf10b-25":{"renderedLength":2127,"gzipLength":819,"brotliLength":0,"metaUid":"25dbf10b-24"},"25dbf10b-27":{"renderedLength":1182,"gzipLength":592,"brotliLength":0,"metaUid":"25dbf10b-26"},"25dbf10b-29":{"renderedLength":1258,"gzipLength":613,"brotliLength":0,"metaUid":"25dbf10b-28"},"25dbf10b-31":{"renderedLength":905,"gzipLength":500,"brotliLength":0,"metaUid":"25dbf10b-30"},"25dbf10b-33":{"renderedLength":740,"gzipLength":425,"brotliLength":0,"metaUid":"25dbf10b-32"},"25dbf10b-35":{"renderedLength":987,"gzipLength":537,"brotliLength":0,"metaUid":"25dbf10b-34"},"25dbf10b-37":{"renderedLength":924,"gzipLength":508,"brotliLength":0,"metaUid":"25dbf10b-36"},"25dbf10b-39":{"renderedLength":718,"gzipLength":404,"brotliLength":0,"metaUid":"25dbf10b-38"},"25dbf10b-41":{"renderedLength":967,"gzipLength":507,"brotliLength":0,"metaUid":"25dbf10b-40"},"25dbf10b-43":{"renderedLength":680,"gzipLength":373,"brotliLength":0,"metaUid":"25dbf10b-42"},"25dbf10b-45":{"renderedLength":662,"gzipLength":371,"brotliLength":0,"metaUid":"25dbf10b-44"},"25dbf10b-47":{"renderedLength":1641,"gzipLength":677,"brotliLength":0,"metaUid":"25dbf10b-46"},"25dbf10b-49":{"renderedLength":839,"gzipLength":451,"brotliLength":0,"metaUid":"25dbf10b-48"},"25dbf10b-51":{"renderedLength":617,"gzipLength":408,"brotliLength":0,"metaUid":"25dbf10b-50"},"25dbf10b-53":{"renderedLength":1068,"gzipLength":555,"brotliLength":0,"metaUid":"25dbf10b-52"},"25dbf10b-55":{"renderedLength":1414,"gzipLength":614,"brotliLength":0,"metaUid":"25dbf10b-54"},"25dbf10b-57":{"renderedLength":748,"gzipLength":411,"brotliLength":0,"metaUid":"25dbf10b-56"},"25dbf10b-59":{"renderedLength":825,"gzipLength":454,"brotliLength":0,"metaUid":"25dbf10b-58"},"25dbf10b-61":{"renderedLength":1158,"gzipLength":596,"brotliLength":0,"metaUid":"25dbf10b-60"},"25dbf10b-63":{"renderedLength":780,"gzipLength":414,"brotliLength":0,"metaUid":"25dbf10b-62"},"25dbf10b-65":{"renderedLength":1844,"gzipLength":792,"brotliLength":0,"metaUid":"25dbf10b-64"},"25dbf10b-67":{"renderedLength":707,"gzipLength":396,"brotliLength":0,"metaUid":"25dbf10b-66"},"25dbf10b-69":{"renderedLength":636,"gzipLength":427,"brotliLength":0,"metaUid":"25dbf10b-68"},"25dbf10b-71":{"renderedLength":947,"gzipLength":492,"brotliLength":0,"metaUid":"25dbf10b-70"},"25dbf10b-73":{"renderedLength":696,"gzipLength":431,"brotliLength":0,"metaUid":"25dbf10b-72"},"25dbf10b-75":{"renderedLength":1232,"gzipLength":600,"brotliLength":0,"metaUid":"25dbf10b-74"},"25dbf10b-77":{"renderedLength":1266,"gzipLength":635,"brotliLength":0,"metaUid":"25dbf10b-76"},"25dbf10b-79":{"renderedLength":1450,"gzipLength":617,"brotliLength":0,"metaUid":"25dbf10b-78"},"25dbf10b-81":{"renderedLength":686,"gzipLength":396,"brotliLength":0,"metaUid":"25dbf10b-80"},"25dbf10b-83":{"renderedLength":821,"gzipLength":440,"brotliLength":0,"metaUid":"25dbf10b-82"},"25dbf10b-85":{"renderedLength":1217,"gzipLength":514,"brotliLength":0,"metaUid":"25dbf10b-84"},"25dbf10b-87":{"renderedLength":1348,"gzipLength":652,"brotliLength":0,"metaUid":"25dbf10b-86"},"25dbf10b-89":{"renderedLength":1672,"gzipLength":680,"brotliLength":0,"metaUid":"25dbf10b-88"},"25dbf10b-91":{"renderedLength":1280,"gzipLength":561,"brotliLength":0,"metaUid":"25dbf10b-90"},"25dbf10b-93":{"renderedLength":1247,"gzipLength":642,"brotliLength":0,"metaUid":"25dbf10b-92"},"25dbf10b-95":{"renderedLength":1887,"gzipLength":716,"brotliLength":0,"metaUid":"25dbf10b-94"},"25dbf10b-97":{"renderedLength":2081,"gzipLength":873,"brotliLength":0,"metaUid":"25dbf10b-96"},"25dbf10b-99":{"renderedLength":1126,"gzipLength":551,"brotliLength":0,"metaUid":"25dbf10b-98"},"25dbf10b-101":{"renderedLength":1062,"gzipLength":556,"brotliLength":0,"metaUid":"25dbf10b-100"},"25dbf10b-103":{"renderedLength":1683,"gzipLength":673,"brotliLength":0,"metaUid":"25dbf10b-102"},"25dbf10b-105":{"renderedLength":1327,"gzipLength":576,"brotliLength":0,"metaUid":"25dbf10b-104"},"25dbf10b-107":{"renderedLength":927,"gzipLength":522,"brotliLength":0,"metaUid":"25dbf10b-106"},"25dbf10b-109":{"renderedLength":976,"gzipLength":503,"brotliLength":0,"metaUid":"25dbf10b-108"},"25dbf10b-111":{"renderedLength":1445,"gzipLength":684,"brotliLength":0,"metaUid":"25dbf10b-110"},"25dbf10b-113":{"renderedLength":1371,"gzipLength":505,"brotliLength":0,"metaUid":"25dbf10b-112"},"25dbf10b-115":{"renderedLength":768,"gzipLength":452,"brotliLength":0,"metaUid":"25dbf10b-114"},"25dbf10b-117":{"renderedLength":1014,"gzipLength":533,"brotliLength":0,"metaUid":"25dbf10b-116"},"25dbf10b-119":{"renderedLength":1040,"gzipLength":503,"brotliLength":0,"metaUid":"25dbf10b-118"},"25dbf10b-121":{"renderedLength":1093,"gzipLength":580,"brotliLength":0,"metaUid":"25dbf10b-120"},"25dbf10b-123":{"renderedLength":1307,"gzipLength":528,"brotliLength":0,"metaUid":"25dbf10b-122"},"25dbf10b-125":{"renderedLength":699,"gzipLength":407,"brotliLength":0,"metaUid":"25dbf10b-124"},"25dbf10b-127":{"renderedLength":368,"gzipLength":256,"brotliLength":0,"metaUid":"25dbf10b-126"},"25dbf10b-129":{"renderedLength":3228,"gzipLength":1252,"brotliLength":0,"metaUid":"25dbf10b-128"},"25dbf10b-131":{"renderedLength":4170,"gzipLength":1355,"brotliLength":0,"metaUid":"25dbf10b-130"},"25dbf10b-133":{"renderedLength":1975,"gzipLength":729,"brotliLength":0,"metaUid":"25dbf10b-132"},"25dbf10b-135":{"renderedLength":2261,"gzipLength":991,"brotliLength":0,"metaUid":"25dbf10b-134"},"25dbf10b-137":{"renderedLength":3756,"gzipLength":1416,"brotliLength":0,"metaUid":"25dbf10b-136"}},"nodeMetas":{"25dbf10b-0":{"id":"/src/cache.ts","moduleParts":{"cli.js":"25dbf10b-1"},"imported":[],"importedBy":[{"uid":"25dbf10b-130"},{"uid":"25dbf10b-134"}]},"25dbf10b-2":{"id":"/src/config/ignore.ts","moduleParts":{"cli.js":"25dbf10b-3"},"imported":[{"uid":"25dbf10b-138"},{"uid":"25dbf10b-139"}],"importedBy":[{"uid":"25dbf10b-130"},{"uid":"25dbf10b-134"}]},"25dbf10b-4":{"id":"/src/config/loader.ts","moduleParts":{"cli.js":"25dbf10b-5"},"imported":[{"uid":"25dbf10b-138"},{"uid":"25dbf10b-139"}],"importedBy":[{"uid":"25dbf10b-130"}]},"25dbf10b-6":{"id":"/src/utils/imports.ts","moduleParts":{"cli.js":"25dbf10b-7"},"imported":[],"importedBy":[{"uid":"25dbf10b-126"},{"uid":"25dbf10b-18"},{"uid":"25dbf10b-20"},{"uid":"25dbf10b-22"},{"uid":"25dbf10b-30"},{"uid":"25dbf10b-40"},{"uid":"25dbf10b-68"},{"uid":"25dbf10b-92"},{"uid":"25dbf10b-96"},{"uid":"25dbf10b-102"},{"uid":"25dbf10b-110"},{"uid":"25dbf10b-116"},{"uid":"25dbf10b-8"}]},"25dbf10b-8":{"id":"/src/utils/ast.ts","moduleParts":{"cli.js":"25dbf10b-9"},"imported":[{"uid":"25dbf10b-6"}],"importedBy":[{"uid":"25dbf10b-126"},{"uid":"25dbf10b-10"},{"uid":"25dbf10b-12"},{"uid":"25dbf10b-14"},{"uid":"25dbf10b-16"},{"uid":"25dbf10b-18"},{"uid":"25dbf10b-20"},{"uid":"25dbf10b-22"},{"uid":"25dbf10b-24"},{"uid":"25dbf10b-26"},{"uid":"25dbf10b-28"},{"uid":"25dbf10b-30"},{"uid":"25dbf10b-32"},{"uid":"25dbf10b-34"},{"uid":"25dbf10b-36"},{"uid":"25dbf10b-38"},{"uid":"25dbf10b-40"},{"uid":"25dbf10b-42"},{"uid":"25dbf10b-44"},{"uid":"25dbf10b-46"},{"uid":"25dbf10b-48"},{"uid":"25dbf10b-50"},{"uid":"25dbf10b-52"},{"uid":"25dbf10b-54"},{"uid":"25dbf10b-56"},{"uid":"25dbf10b-58"},{"uid":"25dbf10b-60"},{"uid":"25dbf10b-62"},{"uid":"25dbf10b-64"},{"uid":"25dbf10b-66"},{"uid":"25dbf10b-68"},{"uid":"25dbf10b-70"},{"uid":"25dbf10b-72"},{"uid":"25dbf10b-74"},{"uid":"25dbf10b-76"},{"uid":"25dbf10b-78"},{"uid":"25dbf10b-80"},{"uid":"25dbf10b-82"},{"uid":"25dbf10b-84"},{"uid":"25dbf10b-86"},{"uid":"25dbf10b-88"},{"uid":"25dbf10b-90"},{"uid":"25dbf10b-92"},{"uid":"25dbf10b-94"},{"uid":"25dbf10b-96"},{"uid":"25dbf10b-98"},{"uid":"25dbf10b-100"},{"uid":"25dbf10b-102"},{"uid":"25dbf10b-104"},{"uid":"25dbf10b-106"},{"uid":"25dbf10b-108"},{"uid":"25dbf10b-110"},{"uid":"25dbf10b-112"},{"uid":"25dbf10b-114"},{"uid":"25dbf10b-116"},{"uid":"25dbf10b-118"}]},"25dbf10b-10":{"id":"/src/rules/accessibility/dialog-a11y.ts","moduleParts":{"cli.js":"25dbf10b-11"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-12":{"id":"/src/rules/accessibility/overlay-a11y.ts","moduleParts":{"cli.js":"25dbf10b-13"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-14":{"id":"/src/rules/accessibility/toast-a11y.ts","moduleParts":{"cli.js":"25dbf10b-15"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-16":{"id":"/src/rules/architecture/dev-guard-warnings.ts","moduleParts":{"cli.js":"25dbf10b-17"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-18":{"id":"/src/rules/architecture/no-circular-import.ts","moduleParts":{"cli.js":"25dbf10b-19"},"imported":[{"uid":"25dbf10b-8"},{"uid":"25dbf10b-6"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-20":{"id":"/src/rules/architecture/no-cross-layer-import.ts","moduleParts":{"cli.js":"25dbf10b-21"},"imported":[{"uid":"25dbf10b-8"},{"uid":"25dbf10b-6"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-22":{"id":"/src/rules/architecture/no-deep-import.ts","moduleParts":{"cli.js":"25dbf10b-23"},"imported":[{"uid":"25dbf10b-8"},{"uid":"25dbf10b-6"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-24":{"id":"/src/rules/architecture/no-error-without-prefix.ts","moduleParts":{"cli.js":"25dbf10b-25"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-26":{"id":"/src/rules/form/no-submit-without-validation.ts","moduleParts":{"cli.js":"25dbf10b-27"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-28":{"id":"/src/rules/form/no-unregistered-field.ts","moduleParts":{"cli.js":"25dbf10b-29"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-30":{"id":"/src/rules/form/prefer-field-array.ts","moduleParts":{"cli.js":"25dbf10b-31"},"imported":[{"uid":"25dbf10b-8"},{"uid":"25dbf10b-6"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-32":{"id":"/src/rules/hooks/no-raw-addeventlistener.ts","moduleParts":{"cli.js":"25dbf10b-33"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-34":{"id":"/src/rules/hooks/no-raw-localstorage.ts","moduleParts":{"cli.js":"25dbf10b-35"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-36":{"id":"/src/rules/hooks/no-raw-setinterval.ts","moduleParts":{"cli.js":"25dbf10b-37"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-38":{"id":"/src/rules/jsx/no-and-conditional.ts","moduleParts":{"cli.js":"25dbf10b-39"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-40":{"id":"/src/rules/jsx/no-children-access.ts","moduleParts":{"cli.js":"25dbf10b-41"},"imported":[{"uid":"25dbf10b-8"},{"uid":"25dbf10b-6"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-42":{"id":"/src/rules/jsx/no-classname.ts","moduleParts":{"cli.js":"25dbf10b-43"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-44":{"id":"/src/rules/jsx/no-htmlfor.ts","moduleParts":{"cli.js":"25dbf10b-45"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-46":{"id":"/src/rules/jsx/no-index-as-by.ts","moduleParts":{"cli.js":"25dbf10b-47"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-48":{"id":"/src/rules/jsx/no-map-in-jsx.ts","moduleParts":{"cli.js":"25dbf10b-49"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-50":{"id":"/src/rules/jsx/no-missing-for-by.ts","moduleParts":{"cli.js":"25dbf10b-51"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-52":{"id":"/src/rules/jsx/no-onchange.ts","moduleParts":{"cli.js":"25dbf10b-53"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-54":{"id":"/src/rules/jsx/no-props-destructure.ts","moduleParts":{"cli.js":"25dbf10b-55"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-56":{"id":"/src/rules/jsx/no-ternary-conditional.ts","moduleParts":{"cli.js":"25dbf10b-57"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-58":{"id":"/src/rules/jsx/use-by-not-key.ts","moduleParts":{"cli.js":"25dbf10b-59"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-60":{"id":"/src/rules/lifecycle/no-dom-in-setup.ts","moduleParts":{"cli.js":"25dbf10b-61"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-62":{"id":"/src/rules/lifecycle/no-effect-in-mount.ts","moduleParts":{"cli.js":"25dbf10b-63"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-64":{"id":"/src/rules/lifecycle/no-missing-cleanup.ts","moduleParts":{"cli.js":"25dbf10b-65"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-66":{"id":"/src/rules/lifecycle/no-mount-in-effect.ts","moduleParts":{"cli.js":"25dbf10b-67"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-68":{"id":"/src/rules/performance/no-eager-import.ts","moduleParts":{"cli.js":"25dbf10b-69"},"imported":[{"uid":"25dbf10b-8"},{"uid":"25dbf10b-6"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-70":{"id":"/src/rules/performance/no-effect-in-for.ts","moduleParts":{"cli.js":"25dbf10b-71"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-72":{"id":"/src/rules/performance/no-large-for-without-by.ts","moduleParts":{"cli.js":"25dbf10b-73"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-74":{"id":"/src/rules/performance/prefer-show-over-display.ts","moduleParts":{"cli.js":"25dbf10b-75"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-76":{"id":"/src/rules/reactivity/no-bare-signal-in-jsx.ts","moduleParts":{"cli.js":"25dbf10b-77"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-78":{"id":"/src/rules/reactivity/no-effect-assignment.ts","moduleParts":{"cli.js":"25dbf10b-79"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-80":{"id":"/src/rules/reactivity/no-nested-effect.ts","moduleParts":{"cli.js":"25dbf10b-81"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-82":{"id":"/src/rules/reactivity/no-peek-in-tracked.ts","moduleParts":{"cli.js":"25dbf10b-83"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-84":{"id":"/src/rules/reactivity/no-signal-in-loop.ts","moduleParts":{"cli.js":"25dbf10b-85"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-86":{"id":"/src/rules/reactivity/no-signal-leak.ts","moduleParts":{"cli.js":"25dbf10b-87"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-88":{"id":"/src/rules/reactivity/no-unbatched-updates.ts","moduleParts":{"cli.js":"25dbf10b-89"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-90":{"id":"/src/rules/reactivity/prefer-computed.ts","moduleParts":{"cli.js":"25dbf10b-91"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-92":{"id":"/src/rules/router/no-href-navigation.ts","moduleParts":{"cli.js":"25dbf10b-93"},"imported":[{"uid":"25dbf10b-8"},{"uid":"25dbf10b-6"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-94":{"id":"/src/rules/router/no-imperative-navigate-in-render.ts","moduleParts":{"cli.js":"25dbf10b-95"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-96":{"id":"/src/rules/router/no-missing-fallback.ts","moduleParts":{"cli.js":"25dbf10b-97"},"imported":[{"uid":"25dbf10b-8"},{"uid":"25dbf10b-6"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-98":{"id":"/src/rules/router/prefer-use-is-active.ts","moduleParts":{"cli.js":"25dbf10b-99"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-100":{"id":"/src/rules/ssr/no-mismatch-risk.ts","moduleParts":{"cli.js":"25dbf10b-101"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-102":{"id":"/src/rules/ssr/no-window-in-ssr.ts","moduleParts":{"cli.js":"25dbf10b-103"},"imported":[{"uid":"25dbf10b-8"},{"uid":"25dbf10b-6"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-104":{"id":"/src/rules/ssr/prefer-request-context.ts","moduleParts":{"cli.js":"25dbf10b-105"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-106":{"id":"/src/rules/store/no-duplicate-store-id.ts","moduleParts":{"cli.js":"25dbf10b-107"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-108":{"id":"/src/rules/store/no-mutate-store-state.ts","moduleParts":{"cli.js":"25dbf10b-109"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-110":{"id":"/src/rules/store/no-store-outside-provider.ts","moduleParts":{"cli.js":"25dbf10b-111"},"imported":[{"uid":"25dbf10b-8"},{"uid":"25dbf10b-6"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-112":{"id":"/src/rules/styling/no-dynamic-styled.ts","moduleParts":{"cli.js":"25dbf10b-113"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-114":{"id":"/src/rules/styling/no-inline-style-object.ts","moduleParts":{"cli.js":"25dbf10b-115"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-116":{"id":"/src/rules/styling/no-theme-outside-provider.ts","moduleParts":{"cli.js":"25dbf10b-117"},"imported":[{"uid":"25dbf10b-8"},{"uid":"25dbf10b-6"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-118":{"id":"/src/rules/styling/prefer-cx.ts","moduleParts":{"cli.js":"25dbf10b-119"},"imported":[{"uid":"25dbf10b-8"}],"importedBy":[{"uid":"25dbf10b-120"}]},"25dbf10b-120":{"id":"/src/rules/index.ts","moduleParts":{"cli.js":"25dbf10b-121"},"imported":[{"uid":"25dbf10b-10"},{"uid":"25dbf10b-12"},{"uid":"25dbf10b-14"},{"uid":"25dbf10b-16"},{"uid":"25dbf10b-18"},{"uid":"25dbf10b-20"},{"uid":"25dbf10b-22"},{"uid":"25dbf10b-24"},{"uid":"25dbf10b-26"},{"uid":"25dbf10b-28"},{"uid":"25dbf10b-30"},{"uid":"25dbf10b-32"},{"uid":"25dbf10b-34"},{"uid":"25dbf10b-36"},{"uid":"25dbf10b-38"},{"uid":"25dbf10b-40"},{"uid":"25dbf10b-42"},{"uid":"25dbf10b-44"},{"uid":"25dbf10b-46"},{"uid":"25dbf10b-48"},{"uid":"25dbf10b-50"},{"uid":"25dbf10b-52"},{"uid":"25dbf10b-54"},{"uid":"25dbf10b-56"},{"uid":"25dbf10b-58"},{"uid":"25dbf10b-60"},{"uid":"25dbf10b-62"},{"uid":"25dbf10b-64"},{"uid":"25dbf10b-66"},{"uid":"25dbf10b-68"},{"uid":"25dbf10b-70"},{"uid":"25dbf10b-72"},{"uid":"25dbf10b-74"},{"uid":"25dbf10b-76"},{"uid":"25dbf10b-78"},{"uid":"25dbf10b-80"},{"uid":"25dbf10b-82"},{"uid":"25dbf10b-84"},{"uid":"25dbf10b-86"},{"uid":"25dbf10b-88"},{"uid":"25dbf10b-90"},{"uid":"25dbf10b-92"},{"uid":"25dbf10b-94"},{"uid":"25dbf10b-96"},{"uid":"25dbf10b-98"},{"uid":"25dbf10b-100"},{"uid":"25dbf10b-102"},{"uid":"25dbf10b-104"},{"uid":"25dbf10b-106"},{"uid":"25dbf10b-108"},{"uid":"25dbf10b-110"},{"uid":"25dbf10b-112"},{"uid":"25dbf10b-114"},{"uid":"25dbf10b-116"},{"uid":"25dbf10b-118"}],"importedBy":[{"uid":"25dbf10b-130"},{"uid":"25dbf10b-134"},{"uid":"25dbf10b-122"}]},"25dbf10b-122":{"id":"/src/config/presets.ts","moduleParts":{"cli.js":"25dbf10b-123"},"imported":[{"uid":"25dbf10b-120"}],"importedBy":[{"uid":"25dbf10b-130"},{"uid":"25dbf10b-134"}]},"25dbf10b-124":{"id":"/src/utils/source.ts","moduleParts":{"cli.js":"25dbf10b-125"},"imported":[],"importedBy":[{"uid":"25dbf10b-128"},{"uid":"25dbf10b-126"}]},"25dbf10b-126":{"id":"/src/utils/index.ts","moduleParts":{"cli.js":"25dbf10b-127"},"imported":[{"uid":"25dbf10b-8"},{"uid":"25dbf10b-6"},{"uid":"25dbf10b-124"}],"importedBy":[{"uid":"25dbf10b-130"},{"uid":"25dbf10b-134"},{"uid":"25dbf10b-128"}]},"25dbf10b-128":{"id":"/src/runner.ts","moduleParts":{"cli.js":"25dbf10b-129"},"imported":[{"uid":"25dbf10b-140"},{"uid":"25dbf10b-126"},{"uid":"25dbf10b-124"}],"importedBy":[{"uid":"25dbf10b-130"},{"uid":"25dbf10b-134"}]},"25dbf10b-130":{"id":"/src/lint.ts","moduleParts":{"cli.js":"25dbf10b-131"},"imported":[{"uid":"25dbf10b-138"},{"uid":"25dbf10b-139"},{"uid":"25dbf10b-0"},{"uid":"25dbf10b-2"},{"uid":"25dbf10b-4"},{"uid":"25dbf10b-122"},{"uid":"25dbf10b-120"},{"uid":"25dbf10b-128"},{"uid":"25dbf10b-126"}],"importedBy":[{"uid":"25dbf10b-136"}]},"25dbf10b-132":{"id":"/src/reporter.ts","moduleParts":{"cli.js":"25dbf10b-133"},"imported":[],"importedBy":[{"uid":"25dbf10b-136"},{"uid":"25dbf10b-134"}]},"25dbf10b-134":{"id":"/src/watcher.ts","moduleParts":{"cli.js":"25dbf10b-135"},"imported":[{"uid":"25dbf10b-138"},{"uid":"25dbf10b-139"},{"uid":"25dbf10b-0"},{"uid":"25dbf10b-2"},{"uid":"25dbf10b-122"},{"uid":"25dbf10b-132"},{"uid":"25dbf10b-120"},{"uid":"25dbf10b-128"},{"uid":"25dbf10b-126"}],"importedBy":[{"uid":"25dbf10b-136"}]},"25dbf10b-136":{"id":"/src/cli.ts","moduleParts":{"cli.js":"25dbf10b-137"},"imported":[{"uid":"25dbf10b-130"},{"uid":"25dbf10b-132"},{"uid":"25dbf10b-134"}],"importedBy":[],"isEntry":true},"25dbf10b-138":{"id":"node:fs","moduleParts":{},"imported":[],"importedBy":[{"uid":"25dbf10b-130"},{"uid":"25dbf10b-134"},{"uid":"25dbf10b-2"},{"uid":"25dbf10b-4"}]},"25dbf10b-139":{"id":"node:path","moduleParts":{},"imported":[],"importedBy":[{"uid":"25dbf10b-130"},{"uid":"25dbf10b-134"},{"uid":"25dbf10b-2"},{"uid":"25dbf10b-4"}]},"25dbf10b-140":{"id":"oxc-parser","moduleParts":{},"imported":[],"importedBy":[{"uid":"25dbf10b-128"}]}},"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":"src","children":[{"uid":"46dbad01-1","name":"cache.ts"},{"name":"config","children":[{"uid":"46dbad01-3","name":"ignore.ts"},{"uid":"46dbad01-5","name":"loader.ts"},{"uid":"46dbad01-125","name":"presets.ts"}]},{"name":"utils","children":[{"uid":"46dbad01-7","name":"imports.ts"},{"uid":"46dbad01-9","name":"ast.ts"},{"uid":"46dbad01-127","name":"source.ts"},{"uid":"46dbad01-129","name":"index.ts"}]},{"name":"rules","children":[{"name":"accessibility","children":[{"uid":"46dbad01-11","name":"dialog-a11y.ts"},{"uid":"46dbad01-13","name":"overlay-a11y.ts"},{"uid":"46dbad01-15","name":"toast-a11y.ts"}]},{"name":"architecture","children":[{"uid":"46dbad01-17","name":"dev-guard-warnings.ts"},{"uid":"46dbad01-19","name":"no-circular-import.ts"},{"uid":"46dbad01-21","name":"no-cross-layer-import.ts"},{"uid":"46dbad01-23","name":"no-deep-import.ts"},{"uid":"46dbad01-25","name":"no-error-without-prefix.ts"}]},{"name":"form","children":[{"uid":"46dbad01-27","name":"no-submit-without-validation.ts"},{"uid":"46dbad01-29","name":"no-unregistered-field.ts"},{"uid":"46dbad01-31","name":"prefer-field-array.ts"}]},{"name":"hooks","children":[{"uid":"46dbad01-33","name":"no-raw-addeventlistener.ts"},{"uid":"46dbad01-35","name":"no-raw-localstorage.ts"},{"uid":"46dbad01-37","name":"no-raw-setinterval.ts"}]},{"name":"jsx","children":[{"uid":"46dbad01-39","name":"no-and-conditional.ts"},{"uid":"46dbad01-41","name":"no-children-access.ts"},{"uid":"46dbad01-43","name":"no-classname.ts"},{"uid":"46dbad01-45","name":"no-htmlfor.ts"},{"uid":"46dbad01-47","name":"no-index-as-by.ts"},{"uid":"46dbad01-49","name":"no-map-in-jsx.ts"},{"uid":"46dbad01-51","name":"no-missing-for-by.ts"},{"uid":"46dbad01-53","name":"no-onchange.ts"},{"uid":"46dbad01-55","name":"no-props-destructure.ts"},{"uid":"46dbad01-57","name":"no-ternary-conditional.ts"},{"uid":"46dbad01-59","name":"use-by-not-key.ts"}]},{"name":"lifecycle","children":[{"uid":"46dbad01-61","name":"no-dom-in-setup.ts"},{"uid":"46dbad01-63","name":"no-effect-in-mount.ts"},{"uid":"46dbad01-65","name":"no-missing-cleanup.ts"},{"uid":"46dbad01-67","name":"no-mount-in-effect.ts"}]},{"name":"performance","children":[{"uid":"46dbad01-69","name":"no-eager-import.ts"},{"uid":"46dbad01-71","name":"no-effect-in-for.ts"},{"uid":"46dbad01-73","name":"no-large-for-without-by.ts"},{"uid":"46dbad01-75","name":"prefer-show-over-display.ts"}]},{"name":"reactivity","children":[{"uid":"46dbad01-77","name":"no-bare-signal-in-jsx.ts"},{"uid":"46dbad01-79","name":"no-context-destructure.ts"},{"uid":"46dbad01-81","name":"no-effect-assignment.ts"},{"uid":"46dbad01-83","name":"no-nested-effect.ts"},{"uid":"46dbad01-85","name":"no-peek-in-tracked.ts"},{"uid":"46dbad01-87","name":"no-signal-in-loop.ts"},{"uid":"46dbad01-89","name":"no-signal-leak.ts"},{"uid":"46dbad01-91","name":"no-unbatched-updates.ts"},{"uid":"46dbad01-93","name":"prefer-computed.ts"}]},{"name":"router","children":[{"uid":"46dbad01-95","name":"no-href-navigation.ts"},{"uid":"46dbad01-97","name":"no-imperative-navigate-in-render.ts"},{"uid":"46dbad01-99","name":"no-missing-fallback.ts"},{"uid":"46dbad01-101","name":"prefer-use-is-active.ts"}]},{"name":"ssr","children":[{"uid":"46dbad01-103","name":"no-mismatch-risk.ts"},{"uid":"46dbad01-105","name":"no-window-in-ssr.ts"},{"uid":"46dbad01-107","name":"prefer-request-context.ts"}]},{"name":"store","children":[{"uid":"46dbad01-109","name":"no-duplicate-store-id.ts"},{"uid":"46dbad01-111","name":"no-mutate-store-state.ts"},{"uid":"46dbad01-113","name":"no-store-outside-provider.ts"}]},{"name":"styling","children":[{"uid":"46dbad01-115","name":"no-dynamic-styled.ts"},{"uid":"46dbad01-117","name":"no-inline-style-object.ts"},{"uid":"46dbad01-119","name":"no-theme-outside-provider.ts"},{"uid":"46dbad01-121","name":"prefer-cx.ts"}]},{"uid":"46dbad01-123","name":"index.ts"}]},{"uid":"46dbad01-131","name":"runner.ts"},{"uid":"46dbad01-133","name":"lint.ts"},{"name":"lsp/index.ts","uid":"46dbad01-135"},{"uid":"46dbad01-137","name":"reporter.ts"},{"uid":"46dbad01-139","name":"watcher.ts"},{"uid":"46dbad01-141","name":"cli.ts"}]}]}],"isRoot":true},"nodeParts":{"46dbad01-1":{"renderedLength":1035,"gzipLength":568,"brotliLength":0,"metaUid":"46dbad01-0"},"46dbad01-3":{"renderedLength":3011,"gzipLength":1239,"brotliLength":0,"metaUid":"46dbad01-2"},"46dbad01-5":{"renderedLength":1626,"gzipLength":713,"brotliLength":0,"metaUid":"46dbad01-4"},"46dbad01-7":{"renderedLength":1524,"gzipLength":647,"brotliLength":0,"metaUid":"46dbad01-6"},"46dbad01-9":{"renderedLength":2849,"gzipLength":776,"brotliLength":0,"metaUid":"46dbad01-8"},"46dbad01-11":{"renderedLength":775,"gzipLength":445,"brotliLength":0,"metaUid":"46dbad01-10"},"46dbad01-13":{"renderedLength":864,"gzipLength":470,"brotliLength":0,"metaUid":"46dbad01-12"},"46dbad01-15":{"renderedLength":1014,"gzipLength":554,"brotliLength":0,"metaUid":"46dbad01-14"},"46dbad01-17":{"renderedLength":1384,"gzipLength":617,"brotliLength":0,"metaUid":"46dbad01-16"},"46dbad01-19":{"renderedLength":1388,"gzipLength":674,"brotliLength":0,"metaUid":"46dbad01-18"},"46dbad01-21":{"renderedLength":1688,"gzipLength":687,"brotliLength":0,"metaUid":"46dbad01-20"},"46dbad01-23":{"renderedLength":710,"gzipLength":443,"brotliLength":0,"metaUid":"46dbad01-22"},"46dbad01-25":{"renderedLength":2127,"gzipLength":819,"brotliLength":0,"metaUid":"46dbad01-24"},"46dbad01-27":{"renderedLength":1182,"gzipLength":592,"brotliLength":0,"metaUid":"46dbad01-26"},"46dbad01-29":{"renderedLength":1258,"gzipLength":613,"brotliLength":0,"metaUid":"46dbad01-28"},"46dbad01-31":{"renderedLength":905,"gzipLength":500,"brotliLength":0,"metaUid":"46dbad01-30"},"46dbad01-33":{"renderedLength":740,"gzipLength":425,"brotliLength":0,"metaUid":"46dbad01-32"},"46dbad01-35":{"renderedLength":987,"gzipLength":537,"brotliLength":0,"metaUid":"46dbad01-34"},"46dbad01-37":{"renderedLength":924,"gzipLength":508,"brotliLength":0,"metaUid":"46dbad01-36"},"46dbad01-39":{"renderedLength":718,"gzipLength":404,"brotliLength":0,"metaUid":"46dbad01-38"},"46dbad01-41":{"renderedLength":967,"gzipLength":507,"brotliLength":0,"metaUid":"46dbad01-40"},"46dbad01-43":{"renderedLength":680,"gzipLength":373,"brotliLength":0,"metaUid":"46dbad01-42"},"46dbad01-45":{"renderedLength":662,"gzipLength":371,"brotliLength":0,"metaUid":"46dbad01-44"},"46dbad01-47":{"renderedLength":1641,"gzipLength":677,"brotliLength":0,"metaUid":"46dbad01-46"},"46dbad01-49":{"renderedLength":839,"gzipLength":451,"brotliLength":0,"metaUid":"46dbad01-48"},"46dbad01-51":{"renderedLength":617,"gzipLength":408,"brotliLength":0,"metaUid":"46dbad01-50"},"46dbad01-53":{"renderedLength":1068,"gzipLength":555,"brotliLength":0,"metaUid":"46dbad01-52"},"46dbad01-55":{"renderedLength":1414,"gzipLength":614,"brotliLength":0,"metaUid":"46dbad01-54"},"46dbad01-57":{"renderedLength":748,"gzipLength":411,"brotliLength":0,"metaUid":"46dbad01-56"},"46dbad01-59":{"renderedLength":825,"gzipLength":454,"brotliLength":0,"metaUid":"46dbad01-58"},"46dbad01-61":{"renderedLength":1158,"gzipLength":596,"brotliLength":0,"metaUid":"46dbad01-60"},"46dbad01-63":{"renderedLength":780,"gzipLength":414,"brotliLength":0,"metaUid":"46dbad01-62"},"46dbad01-65":{"renderedLength":1844,"gzipLength":792,"brotliLength":0,"metaUid":"46dbad01-64"},"46dbad01-67":{"renderedLength":707,"gzipLength":396,"brotliLength":0,"metaUid":"46dbad01-66"},"46dbad01-69":{"renderedLength":636,"gzipLength":427,"brotliLength":0,"metaUid":"46dbad01-68"},"46dbad01-71":{"renderedLength":947,"gzipLength":492,"brotliLength":0,"metaUid":"46dbad01-70"},"46dbad01-73":{"renderedLength":696,"gzipLength":431,"brotliLength":0,"metaUid":"46dbad01-72"},"46dbad01-75":{"renderedLength":1232,"gzipLength":600,"brotliLength":0,"metaUid":"46dbad01-74"},"46dbad01-77":{"renderedLength":1266,"gzipLength":635,"brotliLength":0,"metaUid":"46dbad01-76"},"46dbad01-79":{"renderedLength":1161,"gzipLength":580,"brotliLength":0,"metaUid":"46dbad01-78"},"46dbad01-81":{"renderedLength":1450,"gzipLength":617,"brotliLength":0,"metaUid":"46dbad01-80"},"46dbad01-83":{"renderedLength":686,"gzipLength":396,"brotliLength":0,"metaUid":"46dbad01-82"},"46dbad01-85":{"renderedLength":821,"gzipLength":440,"brotliLength":0,"metaUid":"46dbad01-84"},"46dbad01-87":{"renderedLength":1217,"gzipLength":514,"brotliLength":0,"metaUid":"46dbad01-86"},"46dbad01-89":{"renderedLength":1348,"gzipLength":652,"brotliLength":0,"metaUid":"46dbad01-88"},"46dbad01-91":{"renderedLength":1672,"gzipLength":680,"brotliLength":0,"metaUid":"46dbad01-90"},"46dbad01-93":{"renderedLength":1280,"gzipLength":561,"brotliLength":0,"metaUid":"46dbad01-92"},"46dbad01-95":{"renderedLength":1247,"gzipLength":642,"brotliLength":0,"metaUid":"46dbad01-94"},"46dbad01-97":{"renderedLength":1887,"gzipLength":716,"brotliLength":0,"metaUid":"46dbad01-96"},"46dbad01-99":{"renderedLength":2081,"gzipLength":873,"brotliLength":0,"metaUid":"46dbad01-98"},"46dbad01-101":{"renderedLength":1126,"gzipLength":551,"brotliLength":0,"metaUid":"46dbad01-100"},"46dbad01-103":{"renderedLength":1062,"gzipLength":556,"brotliLength":0,"metaUid":"46dbad01-102"},"46dbad01-105":{"renderedLength":1683,"gzipLength":673,"brotliLength":0,"metaUid":"46dbad01-104"},"46dbad01-107":{"renderedLength":1327,"gzipLength":576,"brotliLength":0,"metaUid":"46dbad01-106"},"46dbad01-109":{"renderedLength":927,"gzipLength":522,"brotliLength":0,"metaUid":"46dbad01-108"},"46dbad01-111":{"renderedLength":976,"gzipLength":503,"brotliLength":0,"metaUid":"46dbad01-110"},"46dbad01-113":{"renderedLength":1445,"gzipLength":684,"brotliLength":0,"metaUid":"46dbad01-112"},"46dbad01-115":{"renderedLength":1371,"gzipLength":505,"brotliLength":0,"metaUid":"46dbad01-114"},"46dbad01-117":{"renderedLength":768,"gzipLength":452,"brotliLength":0,"metaUid":"46dbad01-116"},"46dbad01-119":{"renderedLength":1014,"gzipLength":533,"brotliLength":0,"metaUid":"46dbad01-118"},"46dbad01-121":{"renderedLength":1040,"gzipLength":503,"brotliLength":0,"metaUid":"46dbad01-120"},"46dbad01-123":{"renderedLength":1116,"gzipLength":586,"brotliLength":0,"metaUid":"46dbad01-122"},"46dbad01-125":{"renderedLength":1307,"gzipLength":528,"brotliLength":0,"metaUid":"46dbad01-124"},"46dbad01-127":{"renderedLength":699,"gzipLength":407,"brotliLength":0,"metaUid":"46dbad01-126"},"46dbad01-129":{"renderedLength":368,"gzipLength":256,"brotliLength":0,"metaUid":"46dbad01-128"},"46dbad01-131":{"renderedLength":3228,"gzipLength":1252,"brotliLength":0,"metaUid":"46dbad01-130"},"46dbad01-133":{"renderedLength":4170,"gzipLength":1355,"brotliLength":0,"metaUid":"46dbad01-132"},"46dbad01-135":{"renderedLength":4557,"gzipLength":1641,"brotliLength":0,"metaUid":"46dbad01-134"},"46dbad01-137":{"renderedLength":1975,"gzipLength":729,"brotliLength":0,"metaUid":"46dbad01-136"},"46dbad01-139":{"renderedLength":2261,"gzipLength":991,"brotliLength":0,"metaUid":"46dbad01-138"},"46dbad01-141":{"renderedLength":3913,"gzipLength":1478,"brotliLength":0,"metaUid":"46dbad01-140"}},"nodeMetas":{"46dbad01-0":{"id":"/src/cache.ts","moduleParts":{"cli.js":"46dbad01-1"},"imported":[],"importedBy":[{"uid":"46dbad01-132"},{"uid":"46dbad01-134"},{"uid":"46dbad01-138"}]},"46dbad01-2":{"id":"/src/config/ignore.ts","moduleParts":{"cli.js":"46dbad01-3"},"imported":[{"uid":"46dbad01-142"},{"uid":"46dbad01-143"}],"importedBy":[{"uid":"46dbad01-132"},{"uid":"46dbad01-138"}]},"46dbad01-4":{"id":"/src/config/loader.ts","moduleParts":{"cli.js":"46dbad01-5"},"imported":[{"uid":"46dbad01-142"},{"uid":"46dbad01-143"}],"importedBy":[{"uid":"46dbad01-132"}]},"46dbad01-6":{"id":"/src/utils/imports.ts","moduleParts":{"cli.js":"46dbad01-7"},"imported":[],"importedBy":[{"uid":"46dbad01-128"},{"uid":"46dbad01-18"},{"uid":"46dbad01-20"},{"uid":"46dbad01-22"},{"uid":"46dbad01-30"},{"uid":"46dbad01-40"},{"uid":"46dbad01-68"},{"uid":"46dbad01-94"},{"uid":"46dbad01-98"},{"uid":"46dbad01-104"},{"uid":"46dbad01-112"},{"uid":"46dbad01-118"},{"uid":"46dbad01-8"}]},"46dbad01-8":{"id":"/src/utils/ast.ts","moduleParts":{"cli.js":"46dbad01-9"},"imported":[{"uid":"46dbad01-6"}],"importedBy":[{"uid":"46dbad01-128"},{"uid":"46dbad01-10"},{"uid":"46dbad01-12"},{"uid":"46dbad01-14"},{"uid":"46dbad01-16"},{"uid":"46dbad01-18"},{"uid":"46dbad01-20"},{"uid":"46dbad01-22"},{"uid":"46dbad01-24"},{"uid":"46dbad01-26"},{"uid":"46dbad01-28"},{"uid":"46dbad01-30"},{"uid":"46dbad01-32"},{"uid":"46dbad01-34"},{"uid":"46dbad01-36"},{"uid":"46dbad01-38"},{"uid":"46dbad01-40"},{"uid":"46dbad01-42"},{"uid":"46dbad01-44"},{"uid":"46dbad01-46"},{"uid":"46dbad01-48"},{"uid":"46dbad01-50"},{"uid":"46dbad01-52"},{"uid":"46dbad01-54"},{"uid":"46dbad01-56"},{"uid":"46dbad01-58"},{"uid":"46dbad01-60"},{"uid":"46dbad01-62"},{"uid":"46dbad01-64"},{"uid":"46dbad01-66"},{"uid":"46dbad01-68"},{"uid":"46dbad01-70"},{"uid":"46dbad01-72"},{"uid":"46dbad01-74"},{"uid":"46dbad01-76"},{"uid":"46dbad01-78"},{"uid":"46dbad01-80"},{"uid":"46dbad01-82"},{"uid":"46dbad01-84"},{"uid":"46dbad01-86"},{"uid":"46dbad01-88"},{"uid":"46dbad01-90"},{"uid":"46dbad01-92"},{"uid":"46dbad01-94"},{"uid":"46dbad01-96"},{"uid":"46dbad01-98"},{"uid":"46dbad01-100"},{"uid":"46dbad01-102"},{"uid":"46dbad01-104"},{"uid":"46dbad01-106"},{"uid":"46dbad01-108"},{"uid":"46dbad01-110"},{"uid":"46dbad01-112"},{"uid":"46dbad01-114"},{"uid":"46dbad01-116"},{"uid":"46dbad01-118"},{"uid":"46dbad01-120"}]},"46dbad01-10":{"id":"/src/rules/accessibility/dialog-a11y.ts","moduleParts":{"cli.js":"46dbad01-11"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-12":{"id":"/src/rules/accessibility/overlay-a11y.ts","moduleParts":{"cli.js":"46dbad01-13"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-14":{"id":"/src/rules/accessibility/toast-a11y.ts","moduleParts":{"cli.js":"46dbad01-15"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-16":{"id":"/src/rules/architecture/dev-guard-warnings.ts","moduleParts":{"cli.js":"46dbad01-17"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-18":{"id":"/src/rules/architecture/no-circular-import.ts","moduleParts":{"cli.js":"46dbad01-19"},"imported":[{"uid":"46dbad01-8"},{"uid":"46dbad01-6"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-20":{"id":"/src/rules/architecture/no-cross-layer-import.ts","moduleParts":{"cli.js":"46dbad01-21"},"imported":[{"uid":"46dbad01-8"},{"uid":"46dbad01-6"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-22":{"id":"/src/rules/architecture/no-deep-import.ts","moduleParts":{"cli.js":"46dbad01-23"},"imported":[{"uid":"46dbad01-8"},{"uid":"46dbad01-6"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-24":{"id":"/src/rules/architecture/no-error-without-prefix.ts","moduleParts":{"cli.js":"46dbad01-25"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-26":{"id":"/src/rules/form/no-submit-without-validation.ts","moduleParts":{"cli.js":"46dbad01-27"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-28":{"id":"/src/rules/form/no-unregistered-field.ts","moduleParts":{"cli.js":"46dbad01-29"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-30":{"id":"/src/rules/form/prefer-field-array.ts","moduleParts":{"cli.js":"46dbad01-31"},"imported":[{"uid":"46dbad01-8"},{"uid":"46dbad01-6"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-32":{"id":"/src/rules/hooks/no-raw-addeventlistener.ts","moduleParts":{"cli.js":"46dbad01-33"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-34":{"id":"/src/rules/hooks/no-raw-localstorage.ts","moduleParts":{"cli.js":"46dbad01-35"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-36":{"id":"/src/rules/hooks/no-raw-setinterval.ts","moduleParts":{"cli.js":"46dbad01-37"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-38":{"id":"/src/rules/jsx/no-and-conditional.ts","moduleParts":{"cli.js":"46dbad01-39"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-40":{"id":"/src/rules/jsx/no-children-access.ts","moduleParts":{"cli.js":"46dbad01-41"},"imported":[{"uid":"46dbad01-8"},{"uid":"46dbad01-6"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-42":{"id":"/src/rules/jsx/no-classname.ts","moduleParts":{"cli.js":"46dbad01-43"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-44":{"id":"/src/rules/jsx/no-htmlfor.ts","moduleParts":{"cli.js":"46dbad01-45"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-46":{"id":"/src/rules/jsx/no-index-as-by.ts","moduleParts":{"cli.js":"46dbad01-47"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-48":{"id":"/src/rules/jsx/no-map-in-jsx.ts","moduleParts":{"cli.js":"46dbad01-49"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-50":{"id":"/src/rules/jsx/no-missing-for-by.ts","moduleParts":{"cli.js":"46dbad01-51"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-52":{"id":"/src/rules/jsx/no-onchange.ts","moduleParts":{"cli.js":"46dbad01-53"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-54":{"id":"/src/rules/jsx/no-props-destructure.ts","moduleParts":{"cli.js":"46dbad01-55"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-56":{"id":"/src/rules/jsx/no-ternary-conditional.ts","moduleParts":{"cli.js":"46dbad01-57"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-58":{"id":"/src/rules/jsx/use-by-not-key.ts","moduleParts":{"cli.js":"46dbad01-59"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-60":{"id":"/src/rules/lifecycle/no-dom-in-setup.ts","moduleParts":{"cli.js":"46dbad01-61"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-62":{"id":"/src/rules/lifecycle/no-effect-in-mount.ts","moduleParts":{"cli.js":"46dbad01-63"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-64":{"id":"/src/rules/lifecycle/no-missing-cleanup.ts","moduleParts":{"cli.js":"46dbad01-65"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-66":{"id":"/src/rules/lifecycle/no-mount-in-effect.ts","moduleParts":{"cli.js":"46dbad01-67"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-68":{"id":"/src/rules/performance/no-eager-import.ts","moduleParts":{"cli.js":"46dbad01-69"},"imported":[{"uid":"46dbad01-8"},{"uid":"46dbad01-6"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-70":{"id":"/src/rules/performance/no-effect-in-for.ts","moduleParts":{"cli.js":"46dbad01-71"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-72":{"id":"/src/rules/performance/no-large-for-without-by.ts","moduleParts":{"cli.js":"46dbad01-73"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-74":{"id":"/src/rules/performance/prefer-show-over-display.ts","moduleParts":{"cli.js":"46dbad01-75"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-76":{"id":"/src/rules/reactivity/no-bare-signal-in-jsx.ts","moduleParts":{"cli.js":"46dbad01-77"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-78":{"id":"/src/rules/reactivity/no-context-destructure.ts","moduleParts":{"cli.js":"46dbad01-79"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-80":{"id":"/src/rules/reactivity/no-effect-assignment.ts","moduleParts":{"cli.js":"46dbad01-81"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-82":{"id":"/src/rules/reactivity/no-nested-effect.ts","moduleParts":{"cli.js":"46dbad01-83"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-84":{"id":"/src/rules/reactivity/no-peek-in-tracked.ts","moduleParts":{"cli.js":"46dbad01-85"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-86":{"id":"/src/rules/reactivity/no-signal-in-loop.ts","moduleParts":{"cli.js":"46dbad01-87"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-88":{"id":"/src/rules/reactivity/no-signal-leak.ts","moduleParts":{"cli.js":"46dbad01-89"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-90":{"id":"/src/rules/reactivity/no-unbatched-updates.ts","moduleParts":{"cli.js":"46dbad01-91"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-92":{"id":"/src/rules/reactivity/prefer-computed.ts","moduleParts":{"cli.js":"46dbad01-93"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-94":{"id":"/src/rules/router/no-href-navigation.ts","moduleParts":{"cli.js":"46dbad01-95"},"imported":[{"uid":"46dbad01-8"},{"uid":"46dbad01-6"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-96":{"id":"/src/rules/router/no-imperative-navigate-in-render.ts","moduleParts":{"cli.js":"46dbad01-97"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-98":{"id":"/src/rules/router/no-missing-fallback.ts","moduleParts":{"cli.js":"46dbad01-99"},"imported":[{"uid":"46dbad01-8"},{"uid":"46dbad01-6"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-100":{"id":"/src/rules/router/prefer-use-is-active.ts","moduleParts":{"cli.js":"46dbad01-101"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-102":{"id":"/src/rules/ssr/no-mismatch-risk.ts","moduleParts":{"cli.js":"46dbad01-103"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-104":{"id":"/src/rules/ssr/no-window-in-ssr.ts","moduleParts":{"cli.js":"46dbad01-105"},"imported":[{"uid":"46dbad01-8"},{"uid":"46dbad01-6"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-106":{"id":"/src/rules/ssr/prefer-request-context.ts","moduleParts":{"cli.js":"46dbad01-107"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-108":{"id":"/src/rules/store/no-duplicate-store-id.ts","moduleParts":{"cli.js":"46dbad01-109"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-110":{"id":"/src/rules/store/no-mutate-store-state.ts","moduleParts":{"cli.js":"46dbad01-111"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-112":{"id":"/src/rules/store/no-store-outside-provider.ts","moduleParts":{"cli.js":"46dbad01-113"},"imported":[{"uid":"46dbad01-8"},{"uid":"46dbad01-6"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-114":{"id":"/src/rules/styling/no-dynamic-styled.ts","moduleParts":{"cli.js":"46dbad01-115"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-116":{"id":"/src/rules/styling/no-inline-style-object.ts","moduleParts":{"cli.js":"46dbad01-117"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-118":{"id":"/src/rules/styling/no-theme-outside-provider.ts","moduleParts":{"cli.js":"46dbad01-119"},"imported":[{"uid":"46dbad01-8"},{"uid":"46dbad01-6"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-120":{"id":"/src/rules/styling/prefer-cx.ts","moduleParts":{"cli.js":"46dbad01-121"},"imported":[{"uid":"46dbad01-8"}],"importedBy":[{"uid":"46dbad01-122"}]},"46dbad01-122":{"id":"/src/rules/index.ts","moduleParts":{"cli.js":"46dbad01-123"},"imported":[{"uid":"46dbad01-10"},{"uid":"46dbad01-12"},{"uid":"46dbad01-14"},{"uid":"46dbad01-16"},{"uid":"46dbad01-18"},{"uid":"46dbad01-20"},{"uid":"46dbad01-22"},{"uid":"46dbad01-24"},{"uid":"46dbad01-26"},{"uid":"46dbad01-28"},{"uid":"46dbad01-30"},{"uid":"46dbad01-32"},{"uid":"46dbad01-34"},{"uid":"46dbad01-36"},{"uid":"46dbad01-38"},{"uid":"46dbad01-40"},{"uid":"46dbad01-42"},{"uid":"46dbad01-44"},{"uid":"46dbad01-46"},{"uid":"46dbad01-48"},{"uid":"46dbad01-50"},{"uid":"46dbad01-52"},{"uid":"46dbad01-54"},{"uid":"46dbad01-56"},{"uid":"46dbad01-58"},{"uid":"46dbad01-60"},{"uid":"46dbad01-62"},{"uid":"46dbad01-64"},{"uid":"46dbad01-66"},{"uid":"46dbad01-68"},{"uid":"46dbad01-70"},{"uid":"46dbad01-72"},{"uid":"46dbad01-74"},{"uid":"46dbad01-76"},{"uid":"46dbad01-78"},{"uid":"46dbad01-80"},{"uid":"46dbad01-82"},{"uid":"46dbad01-84"},{"uid":"46dbad01-86"},{"uid":"46dbad01-88"},{"uid":"46dbad01-90"},{"uid":"46dbad01-92"},{"uid":"46dbad01-94"},{"uid":"46dbad01-96"},{"uid":"46dbad01-98"},{"uid":"46dbad01-100"},{"uid":"46dbad01-102"},{"uid":"46dbad01-104"},{"uid":"46dbad01-106"},{"uid":"46dbad01-108"},{"uid":"46dbad01-110"},{"uid":"46dbad01-112"},{"uid":"46dbad01-114"},{"uid":"46dbad01-116"},{"uid":"46dbad01-118"},{"uid":"46dbad01-120"}],"importedBy":[{"uid":"46dbad01-132"},{"uid":"46dbad01-134"},{"uid":"46dbad01-138"},{"uid":"46dbad01-124"}]},"46dbad01-124":{"id":"/src/config/presets.ts","moduleParts":{"cli.js":"46dbad01-125"},"imported":[{"uid":"46dbad01-122"}],"importedBy":[{"uid":"46dbad01-132"},{"uid":"46dbad01-134"},{"uid":"46dbad01-138"}]},"46dbad01-126":{"id":"/src/utils/source.ts","moduleParts":{"cli.js":"46dbad01-127"},"imported":[],"importedBy":[{"uid":"46dbad01-130"},{"uid":"46dbad01-128"}]},"46dbad01-128":{"id":"/src/utils/index.ts","moduleParts":{"cli.js":"46dbad01-129"},"imported":[{"uid":"46dbad01-8"},{"uid":"46dbad01-6"},{"uid":"46dbad01-126"}],"importedBy":[{"uid":"46dbad01-132"},{"uid":"46dbad01-138"},{"uid":"46dbad01-130"}]},"46dbad01-130":{"id":"/src/runner.ts","moduleParts":{"cli.js":"46dbad01-131"},"imported":[{"uid":"46dbad01-144"},{"uid":"46dbad01-128"},{"uid":"46dbad01-126"}],"importedBy":[{"uid":"46dbad01-132"},{"uid":"46dbad01-134"},{"uid":"46dbad01-138"}]},"46dbad01-132":{"id":"/src/lint.ts","moduleParts":{"cli.js":"46dbad01-133"},"imported":[{"uid":"46dbad01-142"},{"uid":"46dbad01-143"},{"uid":"46dbad01-0"},{"uid":"46dbad01-2"},{"uid":"46dbad01-4"},{"uid":"46dbad01-124"},{"uid":"46dbad01-122"},{"uid":"46dbad01-130"},{"uid":"46dbad01-128"}],"importedBy":[{"uid":"46dbad01-140"}]},"46dbad01-134":{"id":"/src/lsp/index.ts","moduleParts":{"cli.js":"46dbad01-135"},"imported":[{"uid":"46dbad01-0"},{"uid":"46dbad01-124"},{"uid":"46dbad01-122"},{"uid":"46dbad01-130"}],"importedBy":[{"uid":"46dbad01-140"}]},"46dbad01-136":{"id":"/src/reporter.ts","moduleParts":{"cli.js":"46dbad01-137"},"imported":[],"importedBy":[{"uid":"46dbad01-140"},{"uid":"46dbad01-138"}]},"46dbad01-138":{"id":"/src/watcher.ts","moduleParts":{"cli.js":"46dbad01-139"},"imported":[{"uid":"46dbad01-142"},{"uid":"46dbad01-143"},{"uid":"46dbad01-0"},{"uid":"46dbad01-2"},{"uid":"46dbad01-124"},{"uid":"46dbad01-136"},{"uid":"46dbad01-122"},{"uid":"46dbad01-130"},{"uid":"46dbad01-128"}],"importedBy":[{"uid":"46dbad01-140"}]},"46dbad01-140":{"id":"/src/cli.ts","moduleParts":{"cli.js":"46dbad01-141"},"imported":[{"uid":"46dbad01-132"},{"uid":"46dbad01-134"},{"uid":"46dbad01-136"},{"uid":"46dbad01-138"}],"importedBy":[],"isEntry":true},"46dbad01-142":{"id":"node:fs","moduleParts":{},"imported":[],"importedBy":[{"uid":"46dbad01-132"},{"uid":"46dbad01-138"},{"uid":"46dbad01-2"},{"uid":"46dbad01-4"}]},"46dbad01-143":{"id":"node:path","moduleParts":{},"imported":[],"importedBy":[{"uid":"46dbad01-132"},{"uid":"46dbad01-138"},{"uid":"46dbad01-2"},{"uid":"46dbad01-4"}]},"46dbad01-144":{"id":"oxc-parser","moduleParts":{},"imported":[],"importedBy":[{"uid":"46dbad01-130"}]}},"env":{"rollup":"4.23.0"},"options":{"gzip":true,"brotli":false,"sourcemap":false}};
5390
5390
 
5391
5391
  const run = () => {
5392
5392
  const width = window.innerWidth;