@pyreon/lint 0.11.4 → 0.11.6
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 +91 -91
- package/lib/analysis/cli.js.html +5406 -0
- package/lib/analysis/index.js.html +1 -1
- package/lib/cli.js +3290 -0
- package/lib/cli.js.map +1 -0
- package/lib/index.js +220 -29
- package/lib/index.js.map +1 -1
- package/lib/types/index.d.ts +30 -5
- package/lib/types/index.d.ts.map +1 -1
- package/package.json +19 -19
- package/src/cache.ts +1 -1
- package/src/cli.ts +39 -28
- package/src/config/ignore.ts +23 -23
- package/src/config/loader.ts +8 -8
- package/src/config/presets.ts +11 -11
- package/src/index.ts +14 -12
- package/src/lint.ts +19 -25
- package/src/lsp/index.ts +225 -0
- package/src/reporter.ts +17 -17
- package/src/rules/accessibility/dialog-a11y.ts +10 -10
- package/src/rules/accessibility/overlay-a11y.ts +11 -11
- package/src/rules/accessibility/toast-a11y.ts +11 -11
- package/src/rules/architecture/dev-guard-warnings.ts +19 -19
- package/src/rules/architecture/no-circular-import.ts +16 -16
- package/src/rules/architecture/no-cross-layer-import.ts +35 -35
- package/src/rules/architecture/no-deep-import.ts +7 -7
- package/src/rules/architecture/no-error-without-prefix.ts +20 -20
- package/src/rules/form/no-submit-without-validation.ts +13 -13
- package/src/rules/form/no-unregistered-field.ts +12 -12
- package/src/rules/form/prefer-field-array.ts +11 -11
- package/src/rules/hooks/no-raw-addeventlistener.ts +9 -9
- package/src/rules/hooks/no-raw-localstorage.ts +11 -11
- package/src/rules/hooks/no-raw-setinterval.ts +11 -11
- package/src/rules/index.ts +60 -57
- package/src/rules/jsx/no-and-conditional.ts +8 -8
- package/src/rules/jsx/no-children-access.ts +12 -12
- package/src/rules/jsx/no-classname.ts +10 -10
- package/src/rules/jsx/no-htmlfor.ts +10 -10
- package/src/rules/jsx/no-index-as-by.ts +17 -17
- package/src/rules/jsx/no-map-in-jsx.ts +9 -9
- package/src/rules/jsx/no-missing-for-by.ts +9 -9
- package/src/rules/jsx/no-onchange.ts +12 -12
- package/src/rules/jsx/no-props-destructure.ts +11 -11
- package/src/rules/jsx/no-ternary-conditional.ts +8 -8
- package/src/rules/jsx/use-by-not-key.ts +12 -12
- package/src/rules/lifecycle/no-dom-in-setup.ts +18 -18
- package/src/rules/lifecycle/no-effect-in-mount.ts +11 -11
- package/src/rules/lifecycle/no-missing-cleanup.ts +19 -19
- package/src/rules/lifecycle/no-mount-in-effect.ts +11 -11
- package/src/rules/performance/no-eager-import.ts +7 -7
- package/src/rules/performance/no-effect-in-for.ts +10 -10
- package/src/rules/performance/no-large-for-without-by.ts +9 -9
- package/src/rules/performance/prefer-show-over-display.ts +16 -16
- package/src/rules/reactivity/no-bare-signal-in-jsx.ts +10 -10
- package/src/rules/reactivity/no-context-destructure.ts +45 -0
- package/src/rules/reactivity/no-effect-assignment.ts +16 -16
- package/src/rules/reactivity/no-nested-effect.ts +10 -10
- package/src/rules/reactivity/no-peek-in-tracked.ts +10 -10
- package/src/rules/reactivity/no-signal-in-loop.ts +13 -13
- package/src/rules/reactivity/no-signal-leak.ts +9 -9
- package/src/rules/reactivity/no-unbatched-updates.ts +12 -12
- package/src/rules/reactivity/prefer-computed.ts +13 -13
- package/src/rules/router/index.ts +4 -4
- package/src/rules/router/no-href-navigation.ts +14 -14
- package/src/rules/router/no-imperative-navigate-in-render.ts +19 -19
- package/src/rules/router/no-missing-fallback.ts +16 -16
- package/src/rules/router/prefer-use-is-active.ts +11 -11
- package/src/rules/ssr/no-mismatch-risk.ts +11 -11
- package/src/rules/ssr/no-window-in-ssr.ts +22 -22
- package/src/rules/ssr/prefer-request-context.ts +14 -14
- package/src/rules/store/no-duplicate-store-id.ts +9 -9
- package/src/rules/store/no-mutate-store-state.ts +11 -11
- package/src/rules/store/no-store-outside-provider.ts +15 -15
- package/src/rules/styling/no-dynamic-styled.ts +13 -13
- package/src/rules/styling/no-inline-style-object.ts +10 -10
- package/src/rules/styling/no-theme-outside-provider.ts +11 -11
- package/src/rules/styling/prefer-cx.ts +12 -12
- package/src/runner.ts +13 -14
- package/src/tests/lsp.test.ts +88 -0
- package/src/tests/runner.test.ts +325 -325
- package/src/types.ts +15 -15
- package/src/utils/ast.ts +50 -50
- package/src/utils/imports.ts +53 -53
- package/src/utils/index.ts +12 -3
- package/src/utils/source.ts +2 -2
- package/src/watcher.ts +19 -25
|
@@ -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":"e8b40e48-1","name":"cache.ts"},{"name":"config","children":[{"uid":"e8b40e48-3","name":"ignore.ts"},{"uid":"e8b40e48-5","name":"loader.ts"},{"uid":"e8b40e48-123","name":"presets.ts"}]},{"name":"utils","children":[{"uid":"e8b40e48-7","name":"imports.ts"},{"uid":"e8b40e48-9","name":"ast.ts"},{"uid":"e8b40e48-125","name":"source.ts"}]},{"name":"rules","children":[{"name":"accessibility","children":[{"uid":"e8b40e48-11","name":"dialog-a11y.ts"},{"uid":"e8b40e48-13","name":"overlay-a11y.ts"},{"uid":"e8b40e48-15","name":"toast-a11y.ts"}]},{"name":"architecture","children":[{"uid":"e8b40e48-17","name":"dev-guard-warnings.ts"},{"uid":"e8b40e48-19","name":"no-circular-import.ts"},{"uid":"e8b40e48-21","name":"no-cross-layer-import.ts"},{"uid":"e8b40e48-23","name":"no-deep-import.ts"},{"uid":"e8b40e48-25","name":"no-error-without-prefix.ts"}]},{"name":"form","children":[{"uid":"e8b40e48-27","name":"no-submit-without-validation.ts"},{"uid":"e8b40e48-29","name":"no-unregistered-field.ts"},{"uid":"e8b40e48-31","name":"prefer-field-array.ts"}]},{"name":"hooks","children":[{"uid":"e8b40e48-33","name":"no-raw-addeventlistener.ts"},{"uid":"e8b40e48-35","name":"no-raw-localstorage.ts"},{"uid":"e8b40e48-37","name":"no-raw-setinterval.ts"}]},{"name":"jsx","children":[{"uid":"e8b40e48-39","name":"no-and-conditional.ts"},{"uid":"e8b40e48-41","name":"no-children-access.ts"},{"uid":"e8b40e48-43","name":"no-classname.ts"},{"uid":"e8b40e48-45","name":"no-htmlfor.ts"},{"uid":"e8b40e48-47","name":"no-index-as-by.ts"},{"uid":"e8b40e48-49","name":"no-map-in-jsx.ts"},{"uid":"e8b40e48-51","name":"no-missing-for-by.ts"},{"uid":"e8b40e48-53","name":"no-onchange.ts"},{"uid":"e8b40e48-55","name":"no-props-destructure.ts"},{"uid":"e8b40e48-57","name":"no-ternary-conditional.ts"},{"uid":"e8b40e48-59","name":"use-by-not-key.ts"}]},{"name":"lifecycle","children":[{"uid":"e8b40e48-61","name":"no-dom-in-setup.ts"},{"uid":"e8b40e48-63","name":"no-effect-in-mount.ts"},{"uid":"e8b40e48-65","name":"no-missing-cleanup.ts"},{"uid":"e8b40e48-67","name":"no-mount-in-effect.ts"}]},{"name":"performance","children":[{"uid":"e8b40e48-69","name":"no-eager-import.ts"},{"uid":"e8b40e48-71","name":"no-effect-in-for.ts"},{"uid":"e8b40e48-73","name":"no-large-for-without-by.ts"},{"uid":"e8b40e48-75","name":"prefer-show-over-display.ts"}]},{"name":"reactivity","children":[{"uid":"e8b40e48-77","name":"no-bare-signal-in-jsx.ts"},{"uid":"e8b40e48-79","name":"no-effect-assignment.ts"},{"uid":"e8b40e48-81","name":"no-nested-effect.ts"},{"uid":"e8b40e48-83","name":"no-peek-in-tracked.ts"},{"uid":"e8b40e48-85","name":"no-signal-in-loop.ts"},{"uid":"e8b40e48-87","name":"no-signal-leak.ts"},{"uid":"e8b40e48-89","name":"no-unbatched-updates.ts"},{"uid":"e8b40e48-91","name":"prefer-computed.ts"}]},{"name":"router","children":[{"uid":"e8b40e48-93","name":"no-href-navigation.ts"},{"uid":"e8b40e48-95","name":"no-imperative-navigate-in-render.ts"},{"uid":"e8b40e48-97","name":"no-missing-fallback.ts"},{"uid":"e8b40e48-99","name":"prefer-use-is-active.ts"}]},{"name":"ssr","children":[{"uid":"e8b40e48-101","name":"no-mismatch-risk.ts"},{"uid":"e8b40e48-103","name":"no-window-in-ssr.ts"},{"uid":"e8b40e48-105","name":"prefer-request-context.ts"}]},{"name":"store","children":[{"uid":"e8b40e48-107","name":"no-duplicate-store-id.ts"},{"uid":"e8b40e48-109","name":"no-mutate-store-state.ts"},{"uid":"e8b40e48-111","name":"no-store-outside-provider.ts"}]},{"name":"styling","children":[{"uid":"e8b40e48-113","name":"no-dynamic-styled.ts"},{"uid":"e8b40e48-115","name":"no-inline-style-object.ts"},{"uid":"e8b40e48-117","name":"no-theme-outside-provider.ts"},{"uid":"e8b40e48-119","name":"prefer-cx.ts"}]},{"uid":"e8b40e48-121","name":"index.ts"}]},{"uid":"e8b40e48-127","name":"runner.ts"},{"uid":"e8b40e48-129","name":"lint.ts"},{"uid":"e8b40e48-131","name":"reporter.ts"},{"uid":"e8b40e48-133","name":"watcher.ts"},{"uid":"e8b40e48-135","name":"index.ts"}]}]}],"isRoot":true},"nodeParts":{"e8b40e48-1":{"renderedLength":1035,"gzipLength":568,"brotliLength":0,"metaUid":"e8b40e48-0"},"e8b40e48-3":{"renderedLength":3011,"gzipLength":1239,"brotliLength":0,"metaUid":"e8b40e48-2"},"e8b40e48-5":{"renderedLength":1626,"gzipLength":713,"brotliLength":0,"metaUid":"e8b40e48-4"},"e8b40e48-7":{"renderedLength":2019,"gzipLength":780,"brotliLength":0,"metaUid":"e8b40e48-6"},"e8b40e48-9":{"renderedLength":2849,"gzipLength":776,"brotliLength":0,"metaUid":"e8b40e48-8"},"e8b40e48-11":{"renderedLength":775,"gzipLength":445,"brotliLength":0,"metaUid":"e8b40e48-10"},"e8b40e48-13":{"renderedLength":864,"gzipLength":470,"brotliLength":0,"metaUid":"e8b40e48-12"},"e8b40e48-15":{"renderedLength":1014,"gzipLength":554,"brotliLength":0,"metaUid":"e8b40e48-14"},"e8b40e48-17":{"renderedLength":1384,"gzipLength":617,"brotliLength":0,"metaUid":"e8b40e48-16"},"e8b40e48-19":{"renderedLength":1388,"gzipLength":674,"brotliLength":0,"metaUid":"e8b40e48-18"},"e8b40e48-21":{"renderedLength":1688,"gzipLength":687,"brotliLength":0,"metaUid":"e8b40e48-20"},"e8b40e48-23":{"renderedLength":710,"gzipLength":443,"brotliLength":0,"metaUid":"e8b40e48-22"},"e8b40e48-25":{"renderedLength":2127,"gzipLength":819,"brotliLength":0,"metaUid":"e8b40e48-24"},"e8b40e48-27":{"renderedLength":1182,"gzipLength":592,"brotliLength":0,"metaUid":"e8b40e48-26"},"e8b40e48-29":{"renderedLength":1258,"gzipLength":613,"brotliLength":0,"metaUid":"e8b40e48-28"},"e8b40e48-31":{"renderedLength":905,"gzipLength":500,"brotliLength":0,"metaUid":"e8b40e48-30"},"e8b40e48-33":{"renderedLength":740,"gzipLength":425,"brotliLength":0,"metaUid":"e8b40e48-32"},"e8b40e48-35":{"renderedLength":987,"gzipLength":537,"brotliLength":0,"metaUid":"e8b40e48-34"},"e8b40e48-37":{"renderedLength":924,"gzipLength":508,"brotliLength":0,"metaUid":"e8b40e48-36"},"e8b40e48-39":{"renderedLength":718,"gzipLength":404,"brotliLength":0,"metaUid":"e8b40e48-38"},"e8b40e48-41":{"renderedLength":967,"gzipLength":507,"brotliLength":0,"metaUid":"e8b40e48-40"},"e8b40e48-43":{"renderedLength":680,"gzipLength":373,"brotliLength":0,"metaUid":"e8b40e48-42"},"e8b40e48-45":{"renderedLength":662,"gzipLength":371,"brotliLength":0,"metaUid":"e8b40e48-44"},"e8b40e48-47":{"renderedLength":1641,"gzipLength":677,"brotliLength":0,"metaUid":"e8b40e48-46"},"e8b40e48-49":{"renderedLength":839,"gzipLength":451,"brotliLength":0,"metaUid":"e8b40e48-48"},"e8b40e48-51":{"renderedLength":617,"gzipLength":408,"brotliLength":0,"metaUid":"e8b40e48-50"},"e8b40e48-53":{"renderedLength":1068,"gzipLength":555,"brotliLength":0,"metaUid":"e8b40e48-52"},"e8b40e48-55":{"renderedLength":1414,"gzipLength":614,"brotliLength":0,"metaUid":"e8b40e48-54"},"e8b40e48-57":{"renderedLength":748,"gzipLength":411,"brotliLength":0,"metaUid":"e8b40e48-56"},"e8b40e48-59":{"renderedLength":825,"gzipLength":454,"brotliLength":0,"metaUid":"e8b40e48-58"},"e8b40e48-61":{"renderedLength":1158,"gzipLength":596,"brotliLength":0,"metaUid":"e8b40e48-60"},"e8b40e48-63":{"renderedLength":780,"gzipLength":414,"brotliLength":0,"metaUid":"e8b40e48-62"},"e8b40e48-65":{"renderedLength":1844,"gzipLength":792,"brotliLength":0,"metaUid":"e8b40e48-64"},"e8b40e48-67":{"renderedLength":707,"gzipLength":396,"brotliLength":0,"metaUid":"e8b40e48-66"},"e8b40e48-69":{"renderedLength":636,"gzipLength":427,"brotliLength":0,"metaUid":"e8b40e48-68"},"e8b40e48-71":{"renderedLength":947,"gzipLength":492,"brotliLength":0,"metaUid":"e8b40e48-70"},"e8b40e48-73":{"renderedLength":696,"gzipLength":431,"brotliLength":0,"metaUid":"e8b40e48-72"},"e8b40e48-75":{"renderedLength":1232,"gzipLength":600,"brotliLength":0,"metaUid":"e8b40e48-74"},"e8b40e48-77":{"renderedLength":1266,"gzipLength":635,"brotliLength":0,"metaUid":"e8b40e48-76"},"e8b40e48-79":{"renderedLength":1450,"gzipLength":617,"brotliLength":0,"metaUid":"e8b40e48-78"},"e8b40e48-81":{"renderedLength":686,"gzipLength":396,"brotliLength":0,"metaUid":"e8b40e48-80"},"e8b40e48-83":{"renderedLength":821,"gzipLength":440,"brotliLength":0,"metaUid":"e8b40e48-82"},"e8b40e48-85":{"renderedLength":1217,"gzipLength":514,"brotliLength":0,"metaUid":"e8b40e48-84"},"e8b40e48-87":{"renderedLength":1348,"gzipLength":652,"brotliLength":0,"metaUid":"e8b40e48-86"},"e8b40e48-89":{"renderedLength":1672,"gzipLength":680,"brotliLength":0,"metaUid":"e8b40e48-88"},"e8b40e48-91":{"renderedLength":1280,"gzipLength":561,"brotliLength":0,"metaUid":"e8b40e48-90"},"e8b40e48-93":{"renderedLength":1247,"gzipLength":642,"brotliLength":0,"metaUid":"e8b40e48-92"},"e8b40e48-95":{"renderedLength":1887,"gzipLength":716,"brotliLength":0,"metaUid":"e8b40e48-94"},"e8b40e48-97":{"renderedLength":2081,"gzipLength":873,"brotliLength":0,"metaUid":"e8b40e48-96"},"e8b40e48-99":{"renderedLength":1126,"gzipLength":551,"brotliLength":0,"metaUid":"e8b40e48-98"},"e8b40e48-101":{"renderedLength":1062,"gzipLength":556,"brotliLength":0,"metaUid":"e8b40e48-100"},"e8b40e48-103":{"renderedLength":1683,"gzipLength":673,"brotliLength":0,"metaUid":"e8b40e48-102"},"e8b40e48-105":{"renderedLength":1327,"gzipLength":576,"brotliLength":0,"metaUid":"e8b40e48-104"},"e8b40e48-107":{"renderedLength":927,"gzipLength":522,"brotliLength":0,"metaUid":"e8b40e48-106"},"e8b40e48-109":{"renderedLength":976,"gzipLength":503,"brotliLength":0,"metaUid":"e8b40e48-108"},"e8b40e48-111":{"renderedLength":1445,"gzipLength":684,"brotliLength":0,"metaUid":"e8b40e48-110"},"e8b40e48-113":{"renderedLength":1371,"gzipLength":505,"brotliLength":0,"metaUid":"e8b40e48-112"},"e8b40e48-115":{"renderedLength":768,"gzipLength":452,"brotliLength":0,"metaUid":"e8b40e48-114"},"e8b40e48-117":{"renderedLength":1014,"gzipLength":533,"brotliLength":0,"metaUid":"e8b40e48-116"},"e8b40e48-119":{"renderedLength":1040,"gzipLength":503,"brotliLength":0,"metaUid":"e8b40e48-118"},"e8b40e48-121":{"renderedLength":1093,"gzipLength":580,"brotliLength":0,"metaUid":"e8b40e48-120"},"e8b40e48-123":{"renderedLength":1307,"gzipLength":528,"brotliLength":0,"metaUid":"e8b40e48-122"},"e8b40e48-125":{"renderedLength":699,"gzipLength":407,"brotliLength":0,"metaUid":"e8b40e48-124"},"e8b40e48-127":{"renderedLength":3319,"gzipLength":1288,"brotliLength":0,"metaUid":"e8b40e48-126"},"e8b40e48-129":{"renderedLength":4391,"gzipLength":1456,"brotliLength":0,"metaUid":"e8b40e48-128"},"e8b40e48-131":{"renderedLength":1975,"gzipLength":729,"brotliLength":0,"metaUid":"e8b40e48-130"},"e8b40e48-133":{"renderedLength":2474,"gzipLength":1083,"brotliLength":0,"metaUid":"e8b40e48-132"},"e8b40e48-135":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"e8b40e48-134"}},"nodeMetas":{"e8b40e48-0":{"id":"/src/cache.ts","moduleParts":{"index.js":"e8b40e48-1"},"imported":[],"importedBy":[{"uid":"e8b40e48-134"},{"uid":"e8b40e48-128"},{"uid":"e8b40e48-132"}]},"e8b40e48-2":{"id":"/src/config/ignore.ts","moduleParts":{"index.js":"e8b40e48-3"},"imported":[{"uid":"e8b40e48-136"},{"uid":"e8b40e48-137"}],"importedBy":[{"uid":"e8b40e48-134"},{"uid":"e8b40e48-128"},{"uid":"e8b40e48-132"}]},"e8b40e48-4":{"id":"/src/config/loader.ts","moduleParts":{"index.js":"e8b40e48-5"},"imported":[{"uid":"e8b40e48-136"},{"uid":"e8b40e48-137"}],"importedBy":[{"uid":"e8b40e48-134"},{"uid":"e8b40e48-128"}]},"e8b40e48-6":{"id":"/src/utils/imports.ts","moduleParts":{"index.js":"e8b40e48-7"},"imported":[],"importedBy":[{"uid":"e8b40e48-134"},{"uid":"e8b40e48-18"},{"uid":"e8b40e48-20"},{"uid":"e8b40e48-22"},{"uid":"e8b40e48-30"},{"uid":"e8b40e48-40"},{"uid":"e8b40e48-68"},{"uid":"e8b40e48-92"},{"uid":"e8b40e48-96"},{"uid":"e8b40e48-102"},{"uid":"e8b40e48-110"},{"uid":"e8b40e48-116"},{"uid":"e8b40e48-8"}]},"e8b40e48-8":{"id":"/src/utils/ast.ts","moduleParts":{"index.js":"e8b40e48-9"},"imported":[{"uid":"e8b40e48-6"}],"importedBy":[{"uid":"e8b40e48-10"},{"uid":"e8b40e48-12"},{"uid":"e8b40e48-14"},{"uid":"e8b40e48-16"},{"uid":"e8b40e48-18"},{"uid":"e8b40e48-20"},{"uid":"e8b40e48-22"},{"uid":"e8b40e48-24"},{"uid":"e8b40e48-26"},{"uid":"e8b40e48-28"},{"uid":"e8b40e48-30"},{"uid":"e8b40e48-32"},{"uid":"e8b40e48-34"},{"uid":"e8b40e48-36"},{"uid":"e8b40e48-38"},{"uid":"e8b40e48-40"},{"uid":"e8b40e48-42"},{"uid":"e8b40e48-44"},{"uid":"e8b40e48-46"},{"uid":"e8b40e48-48"},{"uid":"e8b40e48-50"},{"uid":"e8b40e48-52"},{"uid":"e8b40e48-54"},{"uid":"e8b40e48-56"},{"uid":"e8b40e48-58"},{"uid":"e8b40e48-60"},{"uid":"e8b40e48-62"},{"uid":"e8b40e48-64"},{"uid":"e8b40e48-66"},{"uid":"e8b40e48-68"},{"uid":"e8b40e48-70"},{"uid":"e8b40e48-72"},{"uid":"e8b40e48-74"},{"uid":"e8b40e48-76"},{"uid":"e8b40e48-78"},{"uid":"e8b40e48-80"},{"uid":"e8b40e48-82"},{"uid":"e8b40e48-84"},{"uid":"e8b40e48-86"},{"uid":"e8b40e48-88"},{"uid":"e8b40e48-90"},{"uid":"e8b40e48-92"},{"uid":"e8b40e48-94"},{"uid":"e8b40e48-96"},{"uid":"e8b40e48-98"},{"uid":"e8b40e48-100"},{"uid":"e8b40e48-102"},{"uid":"e8b40e48-104"},{"uid":"e8b40e48-106"},{"uid":"e8b40e48-108"},{"uid":"e8b40e48-110"},{"uid":"e8b40e48-112"},{"uid":"e8b40e48-114"},{"uid":"e8b40e48-116"},{"uid":"e8b40e48-118"}]},"e8b40e48-10":{"id":"/src/rules/accessibility/dialog-a11y.ts","moduleParts":{"index.js":"e8b40e48-11"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-12":{"id":"/src/rules/accessibility/overlay-a11y.ts","moduleParts":{"index.js":"e8b40e48-13"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-14":{"id":"/src/rules/accessibility/toast-a11y.ts","moduleParts":{"index.js":"e8b40e48-15"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-16":{"id":"/src/rules/architecture/dev-guard-warnings.ts","moduleParts":{"index.js":"e8b40e48-17"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-18":{"id":"/src/rules/architecture/no-circular-import.ts","moduleParts":{"index.js":"e8b40e48-19"},"imported":[{"uid":"e8b40e48-8"},{"uid":"e8b40e48-6"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-20":{"id":"/src/rules/architecture/no-cross-layer-import.ts","moduleParts":{"index.js":"e8b40e48-21"},"imported":[{"uid":"e8b40e48-8"},{"uid":"e8b40e48-6"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-22":{"id":"/src/rules/architecture/no-deep-import.ts","moduleParts":{"index.js":"e8b40e48-23"},"imported":[{"uid":"e8b40e48-8"},{"uid":"e8b40e48-6"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-24":{"id":"/src/rules/architecture/no-error-without-prefix.ts","moduleParts":{"index.js":"e8b40e48-25"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-26":{"id":"/src/rules/form/no-submit-without-validation.ts","moduleParts":{"index.js":"e8b40e48-27"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-28":{"id":"/src/rules/form/no-unregistered-field.ts","moduleParts":{"index.js":"e8b40e48-29"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-30":{"id":"/src/rules/form/prefer-field-array.ts","moduleParts":{"index.js":"e8b40e48-31"},"imported":[{"uid":"e8b40e48-8"},{"uid":"e8b40e48-6"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-32":{"id":"/src/rules/hooks/no-raw-addeventlistener.ts","moduleParts":{"index.js":"e8b40e48-33"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-34":{"id":"/src/rules/hooks/no-raw-localstorage.ts","moduleParts":{"index.js":"e8b40e48-35"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-36":{"id":"/src/rules/hooks/no-raw-setinterval.ts","moduleParts":{"index.js":"e8b40e48-37"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-38":{"id":"/src/rules/jsx/no-and-conditional.ts","moduleParts":{"index.js":"e8b40e48-39"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-40":{"id":"/src/rules/jsx/no-children-access.ts","moduleParts":{"index.js":"e8b40e48-41"},"imported":[{"uid":"e8b40e48-8"},{"uid":"e8b40e48-6"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-42":{"id":"/src/rules/jsx/no-classname.ts","moduleParts":{"index.js":"e8b40e48-43"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-44":{"id":"/src/rules/jsx/no-htmlfor.ts","moduleParts":{"index.js":"e8b40e48-45"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-46":{"id":"/src/rules/jsx/no-index-as-by.ts","moduleParts":{"index.js":"e8b40e48-47"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-48":{"id":"/src/rules/jsx/no-map-in-jsx.ts","moduleParts":{"index.js":"e8b40e48-49"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-50":{"id":"/src/rules/jsx/no-missing-for-by.ts","moduleParts":{"index.js":"e8b40e48-51"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-52":{"id":"/src/rules/jsx/no-onchange.ts","moduleParts":{"index.js":"e8b40e48-53"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-54":{"id":"/src/rules/jsx/no-props-destructure.ts","moduleParts":{"index.js":"e8b40e48-55"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-56":{"id":"/src/rules/jsx/no-ternary-conditional.ts","moduleParts":{"index.js":"e8b40e48-57"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-58":{"id":"/src/rules/jsx/use-by-not-key.ts","moduleParts":{"index.js":"e8b40e48-59"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-60":{"id":"/src/rules/lifecycle/no-dom-in-setup.ts","moduleParts":{"index.js":"e8b40e48-61"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-62":{"id":"/src/rules/lifecycle/no-effect-in-mount.ts","moduleParts":{"index.js":"e8b40e48-63"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-64":{"id":"/src/rules/lifecycle/no-missing-cleanup.ts","moduleParts":{"index.js":"e8b40e48-65"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-66":{"id":"/src/rules/lifecycle/no-mount-in-effect.ts","moduleParts":{"index.js":"e8b40e48-67"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-68":{"id":"/src/rules/performance/no-eager-import.ts","moduleParts":{"index.js":"e8b40e48-69"},"imported":[{"uid":"e8b40e48-8"},{"uid":"e8b40e48-6"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-70":{"id":"/src/rules/performance/no-effect-in-for.ts","moduleParts":{"index.js":"e8b40e48-71"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-72":{"id":"/src/rules/performance/no-large-for-without-by.ts","moduleParts":{"index.js":"e8b40e48-73"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-74":{"id":"/src/rules/performance/prefer-show-over-display.ts","moduleParts":{"index.js":"e8b40e48-75"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-76":{"id":"/src/rules/reactivity/no-bare-signal-in-jsx.ts","moduleParts":{"index.js":"e8b40e48-77"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-78":{"id":"/src/rules/reactivity/no-effect-assignment.ts","moduleParts":{"index.js":"e8b40e48-79"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-80":{"id":"/src/rules/reactivity/no-nested-effect.ts","moduleParts":{"index.js":"e8b40e48-81"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-82":{"id":"/src/rules/reactivity/no-peek-in-tracked.ts","moduleParts":{"index.js":"e8b40e48-83"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-84":{"id":"/src/rules/reactivity/no-signal-in-loop.ts","moduleParts":{"index.js":"e8b40e48-85"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-86":{"id":"/src/rules/reactivity/no-signal-leak.ts","moduleParts":{"index.js":"e8b40e48-87"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-88":{"id":"/src/rules/reactivity/no-unbatched-updates.ts","moduleParts":{"index.js":"e8b40e48-89"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-90":{"id":"/src/rules/reactivity/prefer-computed.ts","moduleParts":{"index.js":"e8b40e48-91"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-92":{"id":"/src/rules/router/no-href-navigation.ts","moduleParts":{"index.js":"e8b40e48-93"},"imported":[{"uid":"e8b40e48-8"},{"uid":"e8b40e48-6"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-94":{"id":"/src/rules/router/no-imperative-navigate-in-render.ts","moduleParts":{"index.js":"e8b40e48-95"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-96":{"id":"/src/rules/router/no-missing-fallback.ts","moduleParts":{"index.js":"e8b40e48-97"},"imported":[{"uid":"e8b40e48-8"},{"uid":"e8b40e48-6"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-98":{"id":"/src/rules/router/prefer-use-is-active.ts","moduleParts":{"index.js":"e8b40e48-99"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-100":{"id":"/src/rules/ssr/no-mismatch-risk.ts","moduleParts":{"index.js":"e8b40e48-101"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-102":{"id":"/src/rules/ssr/no-window-in-ssr.ts","moduleParts":{"index.js":"e8b40e48-103"},"imported":[{"uid":"e8b40e48-8"},{"uid":"e8b40e48-6"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-104":{"id":"/src/rules/ssr/prefer-request-context.ts","moduleParts":{"index.js":"e8b40e48-105"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-106":{"id":"/src/rules/store/no-duplicate-store-id.ts","moduleParts":{"index.js":"e8b40e48-107"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-108":{"id":"/src/rules/store/no-mutate-store-state.ts","moduleParts":{"index.js":"e8b40e48-109"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-110":{"id":"/src/rules/store/no-store-outside-provider.ts","moduleParts":{"index.js":"e8b40e48-111"},"imported":[{"uid":"e8b40e48-8"},{"uid":"e8b40e48-6"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-112":{"id":"/src/rules/styling/no-dynamic-styled.ts","moduleParts":{"index.js":"e8b40e48-113"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-114":{"id":"/src/rules/styling/no-inline-style-object.ts","moduleParts":{"index.js":"e8b40e48-115"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-116":{"id":"/src/rules/styling/no-theme-outside-provider.ts","moduleParts":{"index.js":"e8b40e48-117"},"imported":[{"uid":"e8b40e48-8"},{"uid":"e8b40e48-6"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-118":{"id":"/src/rules/styling/prefer-cx.ts","moduleParts":{"index.js":"e8b40e48-119"},"imported":[{"uid":"e8b40e48-8"}],"importedBy":[{"uid":"e8b40e48-120"}]},"e8b40e48-120":{"id":"/src/rules/index.ts","moduleParts":{"index.js":"e8b40e48-121"},"imported":[{"uid":"e8b40e48-10"},{"uid":"e8b40e48-12"},{"uid":"e8b40e48-14"},{"uid":"e8b40e48-16"},{"uid":"e8b40e48-18"},{"uid":"e8b40e48-20"},{"uid":"e8b40e48-22"},{"uid":"e8b40e48-24"},{"uid":"e8b40e48-26"},{"uid":"e8b40e48-28"},{"uid":"e8b40e48-30"},{"uid":"e8b40e48-32"},{"uid":"e8b40e48-34"},{"uid":"e8b40e48-36"},{"uid":"e8b40e48-38"},{"uid":"e8b40e48-40"},{"uid":"e8b40e48-42"},{"uid":"e8b40e48-44"},{"uid":"e8b40e48-46"},{"uid":"e8b40e48-48"},{"uid":"e8b40e48-50"},{"uid":"e8b40e48-52"},{"uid":"e8b40e48-54"},{"uid":"e8b40e48-56"},{"uid":"e8b40e48-58"},{"uid":"e8b40e48-60"},{"uid":"e8b40e48-62"},{"uid":"e8b40e48-64"},{"uid":"e8b40e48-66"},{"uid":"e8b40e48-68"},{"uid":"e8b40e48-70"},{"uid":"e8b40e48-72"},{"uid":"e8b40e48-74"},{"uid":"e8b40e48-76"},{"uid":"e8b40e48-78"},{"uid":"e8b40e48-80"},{"uid":"e8b40e48-82"},{"uid":"e8b40e48-84"},{"uid":"e8b40e48-86"},{"uid":"e8b40e48-88"},{"uid":"e8b40e48-90"},{"uid":"e8b40e48-92"},{"uid":"e8b40e48-94"},{"uid":"e8b40e48-96"},{"uid":"e8b40e48-98"},{"uid":"e8b40e48-100"},{"uid":"e8b40e48-102"},{"uid":"e8b40e48-104"},{"uid":"e8b40e48-106"},{"uid":"e8b40e48-108"},{"uid":"e8b40e48-110"},{"uid":"e8b40e48-112"},{"uid":"e8b40e48-114"},{"uid":"e8b40e48-116"},{"uid":"e8b40e48-118"}],"importedBy":[{"uid":"e8b40e48-134"},{"uid":"e8b40e48-122"},{"uid":"e8b40e48-128"},{"uid":"e8b40e48-132"}]},"e8b40e48-122":{"id":"/src/config/presets.ts","moduleParts":{"index.js":"e8b40e48-123"},"imported":[{"uid":"e8b40e48-120"}],"importedBy":[{"uid":"e8b40e48-134"},{"uid":"e8b40e48-128"},{"uid":"e8b40e48-132"}]},"e8b40e48-124":{"id":"/src/utils/source.ts","moduleParts":{"index.js":"e8b40e48-125"},"imported":[],"importedBy":[{"uid":"e8b40e48-134"},{"uid":"e8b40e48-126"}]},"e8b40e48-126":{"id":"/src/runner.ts","moduleParts":{"index.js":"e8b40e48-127"},"imported":[{"uid":"e8b40e48-138"},{"uid":"e8b40e48-124"}],"importedBy":[{"uid":"e8b40e48-134"},{"uid":"e8b40e48-128"},{"uid":"e8b40e48-132"}]},"e8b40e48-128":{"id":"/src/lint.ts","moduleParts":{"index.js":"e8b40e48-129"},"imported":[{"uid":"e8b40e48-136"},{"uid":"e8b40e48-137"},{"uid":"e8b40e48-0"},{"uid":"e8b40e48-2"},{"uid":"e8b40e48-4"},{"uid":"e8b40e48-122"},{"uid":"e8b40e48-120"},{"uid":"e8b40e48-126"}],"importedBy":[{"uid":"e8b40e48-134"}]},"e8b40e48-130":{"id":"/src/reporter.ts","moduleParts":{"index.js":"e8b40e48-131"},"imported":[],"importedBy":[{"uid":"e8b40e48-134"},{"uid":"e8b40e48-132"}]},"e8b40e48-132":{"id":"/src/watcher.ts","moduleParts":{"index.js":"e8b40e48-133"},"imported":[{"uid":"e8b40e48-136"},{"uid":"e8b40e48-137"},{"uid":"e8b40e48-0"},{"uid":"e8b40e48-2"},{"uid":"e8b40e48-122"},{"uid":"e8b40e48-130"},{"uid":"e8b40e48-120"},{"uid":"e8b40e48-126"}],"importedBy":[{"uid":"e8b40e48-134"}]},"e8b40e48-134":{"id":"/src/index.ts","moduleParts":{"index.js":"e8b40e48-135"},"imported":[{"uid":"e8b40e48-0"},{"uid":"e8b40e48-2"},{"uid":"e8b40e48-4"},{"uid":"e8b40e48-122"},{"uid":"e8b40e48-128"},{"uid":"e8b40e48-130"},{"uid":"e8b40e48-120"},{"uid":"e8b40e48-126"},{"uid":"e8b40e48-6"},{"uid":"e8b40e48-124"},{"uid":"e8b40e48-132"}],"importedBy":[],"isEntry":true},"e8b40e48-136":{"id":"node:fs","moduleParts":{},"imported":[],"importedBy":[{"uid":"e8b40e48-2"},{"uid":"e8b40e48-4"},{"uid":"e8b40e48-128"},{"uid":"e8b40e48-132"}]},"e8b40e48-137":{"id":"node:path","moduleParts":{},"imported":[],"importedBy":[{"uid":"e8b40e48-2"},{"uid":"e8b40e48-4"},{"uid":"e8b40e48-128"},{"uid":"e8b40e48-132"}]},"e8b40e48-138":{"id":"oxc-parser","moduleParts":{},"imported":[],"importedBy":[{"uid":"e8b40e48-126"}]}},"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":"src","children":[{"uid":"af902890-1","name":"cache.ts"},{"name":"config","children":[{"uid":"af902890-3","name":"ignore.ts"},{"uid":"af902890-5","name":"loader.ts"},{"uid":"af902890-125","name":"presets.ts"}]},{"name":"utils","children":[{"uid":"af902890-7","name":"imports.ts"},{"uid":"af902890-9","name":"ast.ts"},{"uid":"af902890-127","name":"source.ts"},{"uid":"af902890-129","name":"index.ts"}]},{"name":"rules","children":[{"name":"accessibility","children":[{"uid":"af902890-11","name":"dialog-a11y.ts"},{"uid":"af902890-13","name":"overlay-a11y.ts"},{"uid":"af902890-15","name":"toast-a11y.ts"}]},{"name":"architecture","children":[{"uid":"af902890-17","name":"dev-guard-warnings.ts"},{"uid":"af902890-19","name":"no-circular-import.ts"},{"uid":"af902890-21","name":"no-cross-layer-import.ts"},{"uid":"af902890-23","name":"no-deep-import.ts"},{"uid":"af902890-25","name":"no-error-without-prefix.ts"}]},{"name":"form","children":[{"uid":"af902890-27","name":"no-submit-without-validation.ts"},{"uid":"af902890-29","name":"no-unregistered-field.ts"},{"uid":"af902890-31","name":"prefer-field-array.ts"}]},{"name":"hooks","children":[{"uid":"af902890-33","name":"no-raw-addeventlistener.ts"},{"uid":"af902890-35","name":"no-raw-localstorage.ts"},{"uid":"af902890-37","name":"no-raw-setinterval.ts"}]},{"name":"jsx","children":[{"uid":"af902890-39","name":"no-and-conditional.ts"},{"uid":"af902890-41","name":"no-children-access.ts"},{"uid":"af902890-43","name":"no-classname.ts"},{"uid":"af902890-45","name":"no-htmlfor.ts"},{"uid":"af902890-47","name":"no-index-as-by.ts"},{"uid":"af902890-49","name":"no-map-in-jsx.ts"},{"uid":"af902890-51","name":"no-missing-for-by.ts"},{"uid":"af902890-53","name":"no-onchange.ts"},{"uid":"af902890-55","name":"no-props-destructure.ts"},{"uid":"af902890-57","name":"no-ternary-conditional.ts"},{"uid":"af902890-59","name":"use-by-not-key.ts"}]},{"name":"lifecycle","children":[{"uid":"af902890-61","name":"no-dom-in-setup.ts"},{"uid":"af902890-63","name":"no-effect-in-mount.ts"},{"uid":"af902890-65","name":"no-missing-cleanup.ts"},{"uid":"af902890-67","name":"no-mount-in-effect.ts"}]},{"name":"performance","children":[{"uid":"af902890-69","name":"no-eager-import.ts"},{"uid":"af902890-71","name":"no-effect-in-for.ts"},{"uid":"af902890-73","name":"no-large-for-without-by.ts"},{"uid":"af902890-75","name":"prefer-show-over-display.ts"}]},{"name":"reactivity","children":[{"uid":"af902890-77","name":"no-bare-signal-in-jsx.ts"},{"uid":"af902890-79","name":"no-context-destructure.ts"},{"uid":"af902890-81","name":"no-effect-assignment.ts"},{"uid":"af902890-83","name":"no-nested-effect.ts"},{"uid":"af902890-85","name":"no-peek-in-tracked.ts"},{"uid":"af902890-87","name":"no-signal-in-loop.ts"},{"uid":"af902890-89","name":"no-signal-leak.ts"},{"uid":"af902890-91","name":"no-unbatched-updates.ts"},{"uid":"af902890-93","name":"prefer-computed.ts"}]},{"name":"router","children":[{"uid":"af902890-95","name":"no-href-navigation.ts"},{"uid":"af902890-97","name":"no-imperative-navigate-in-render.ts"},{"uid":"af902890-99","name":"no-missing-fallback.ts"},{"uid":"af902890-101","name":"prefer-use-is-active.ts"}]},{"name":"ssr","children":[{"uid":"af902890-103","name":"no-mismatch-risk.ts"},{"uid":"af902890-105","name":"no-window-in-ssr.ts"},{"uid":"af902890-107","name":"prefer-request-context.ts"}]},{"name":"store","children":[{"uid":"af902890-109","name":"no-duplicate-store-id.ts"},{"uid":"af902890-111","name":"no-mutate-store-state.ts"},{"uid":"af902890-113","name":"no-store-outside-provider.ts"}]},{"name":"styling","children":[{"uid":"af902890-115","name":"no-dynamic-styled.ts"},{"uid":"af902890-117","name":"no-inline-style-object.ts"},{"uid":"af902890-119","name":"no-theme-outside-provider.ts"},{"uid":"af902890-121","name":"prefer-cx.ts"}]},{"uid":"af902890-123","name":"index.ts"}]},{"uid":"af902890-131","name":"runner.ts"},{"uid":"af902890-133","name":"lint.ts"},{"uid":"af902890-135","name":"reporter.ts"},{"name":"lsp/index.ts","uid":"af902890-137"},{"uid":"af902890-139","name":"watcher.ts"},{"uid":"af902890-141","name":"index.ts"}]}]}],"isRoot":true},"nodeParts":{"af902890-1":{"renderedLength":1035,"gzipLength":568,"brotliLength":0,"metaUid":"af902890-0"},"af902890-3":{"renderedLength":3011,"gzipLength":1239,"brotliLength":0,"metaUid":"af902890-2"},"af902890-5":{"renderedLength":1626,"gzipLength":713,"brotliLength":0,"metaUid":"af902890-4"},"af902890-7":{"renderedLength":2019,"gzipLength":780,"brotliLength":0,"metaUid":"af902890-6"},"af902890-9":{"renderedLength":2849,"gzipLength":776,"brotliLength":0,"metaUid":"af902890-8"},"af902890-11":{"renderedLength":775,"gzipLength":445,"brotliLength":0,"metaUid":"af902890-10"},"af902890-13":{"renderedLength":864,"gzipLength":470,"brotliLength":0,"metaUid":"af902890-12"},"af902890-15":{"renderedLength":1014,"gzipLength":554,"brotliLength":0,"metaUid":"af902890-14"},"af902890-17":{"renderedLength":1384,"gzipLength":617,"brotliLength":0,"metaUid":"af902890-16"},"af902890-19":{"renderedLength":1388,"gzipLength":674,"brotliLength":0,"metaUid":"af902890-18"},"af902890-21":{"renderedLength":1688,"gzipLength":687,"brotliLength":0,"metaUid":"af902890-20"},"af902890-23":{"renderedLength":710,"gzipLength":443,"brotliLength":0,"metaUid":"af902890-22"},"af902890-25":{"renderedLength":2127,"gzipLength":819,"brotliLength":0,"metaUid":"af902890-24"},"af902890-27":{"renderedLength":1182,"gzipLength":592,"brotliLength":0,"metaUid":"af902890-26"},"af902890-29":{"renderedLength":1258,"gzipLength":613,"brotliLength":0,"metaUid":"af902890-28"},"af902890-31":{"renderedLength":905,"gzipLength":500,"brotliLength":0,"metaUid":"af902890-30"},"af902890-33":{"renderedLength":740,"gzipLength":425,"brotliLength":0,"metaUid":"af902890-32"},"af902890-35":{"renderedLength":987,"gzipLength":537,"brotliLength":0,"metaUid":"af902890-34"},"af902890-37":{"renderedLength":924,"gzipLength":508,"brotliLength":0,"metaUid":"af902890-36"},"af902890-39":{"renderedLength":718,"gzipLength":404,"brotliLength":0,"metaUid":"af902890-38"},"af902890-41":{"renderedLength":967,"gzipLength":507,"brotliLength":0,"metaUid":"af902890-40"},"af902890-43":{"renderedLength":680,"gzipLength":373,"brotliLength":0,"metaUid":"af902890-42"},"af902890-45":{"renderedLength":662,"gzipLength":371,"brotliLength":0,"metaUid":"af902890-44"},"af902890-47":{"renderedLength":1641,"gzipLength":677,"brotliLength":0,"metaUid":"af902890-46"},"af902890-49":{"renderedLength":839,"gzipLength":451,"brotliLength":0,"metaUid":"af902890-48"},"af902890-51":{"renderedLength":617,"gzipLength":408,"brotliLength":0,"metaUid":"af902890-50"},"af902890-53":{"renderedLength":1068,"gzipLength":555,"brotliLength":0,"metaUid":"af902890-52"},"af902890-55":{"renderedLength":1414,"gzipLength":614,"brotliLength":0,"metaUid":"af902890-54"},"af902890-57":{"renderedLength":748,"gzipLength":411,"brotliLength":0,"metaUid":"af902890-56"},"af902890-59":{"renderedLength":825,"gzipLength":454,"brotliLength":0,"metaUid":"af902890-58"},"af902890-61":{"renderedLength":1158,"gzipLength":596,"brotliLength":0,"metaUid":"af902890-60"},"af902890-63":{"renderedLength":780,"gzipLength":414,"brotliLength":0,"metaUid":"af902890-62"},"af902890-65":{"renderedLength":1844,"gzipLength":792,"brotliLength":0,"metaUid":"af902890-64"},"af902890-67":{"renderedLength":707,"gzipLength":396,"brotliLength":0,"metaUid":"af902890-66"},"af902890-69":{"renderedLength":636,"gzipLength":427,"brotliLength":0,"metaUid":"af902890-68"},"af902890-71":{"renderedLength":947,"gzipLength":492,"brotliLength":0,"metaUid":"af902890-70"},"af902890-73":{"renderedLength":696,"gzipLength":431,"brotliLength":0,"metaUid":"af902890-72"},"af902890-75":{"renderedLength":1232,"gzipLength":600,"brotliLength":0,"metaUid":"af902890-74"},"af902890-77":{"renderedLength":1266,"gzipLength":635,"brotliLength":0,"metaUid":"af902890-76"},"af902890-79":{"renderedLength":1161,"gzipLength":580,"brotliLength":0,"metaUid":"af902890-78"},"af902890-81":{"renderedLength":1450,"gzipLength":617,"brotliLength":0,"metaUid":"af902890-80"},"af902890-83":{"renderedLength":686,"gzipLength":396,"brotliLength":0,"metaUid":"af902890-82"},"af902890-85":{"renderedLength":821,"gzipLength":440,"brotliLength":0,"metaUid":"af902890-84"},"af902890-87":{"renderedLength":1217,"gzipLength":514,"brotliLength":0,"metaUid":"af902890-86"},"af902890-89":{"renderedLength":1348,"gzipLength":652,"brotliLength":0,"metaUid":"af902890-88"},"af902890-91":{"renderedLength":1672,"gzipLength":680,"brotliLength":0,"metaUid":"af902890-90"},"af902890-93":{"renderedLength":1280,"gzipLength":561,"brotliLength":0,"metaUid":"af902890-92"},"af902890-95":{"renderedLength":1247,"gzipLength":642,"brotliLength":0,"metaUid":"af902890-94"},"af902890-97":{"renderedLength":1887,"gzipLength":716,"brotliLength":0,"metaUid":"af902890-96"},"af902890-99":{"renderedLength":2081,"gzipLength":873,"brotliLength":0,"metaUid":"af902890-98"},"af902890-101":{"renderedLength":1126,"gzipLength":551,"brotliLength":0,"metaUid":"af902890-100"},"af902890-103":{"renderedLength":1062,"gzipLength":556,"brotliLength":0,"metaUid":"af902890-102"},"af902890-105":{"renderedLength":1683,"gzipLength":673,"brotliLength":0,"metaUid":"af902890-104"},"af902890-107":{"renderedLength":1327,"gzipLength":576,"brotliLength":0,"metaUid":"af902890-106"},"af902890-109":{"renderedLength":927,"gzipLength":522,"brotliLength":0,"metaUid":"af902890-108"},"af902890-111":{"renderedLength":976,"gzipLength":503,"brotliLength":0,"metaUid":"af902890-110"},"af902890-113":{"renderedLength":1445,"gzipLength":684,"brotliLength":0,"metaUid":"af902890-112"},"af902890-115":{"renderedLength":1371,"gzipLength":505,"brotliLength":0,"metaUid":"af902890-114"},"af902890-117":{"renderedLength":768,"gzipLength":452,"brotliLength":0,"metaUid":"af902890-116"},"af902890-119":{"renderedLength":1014,"gzipLength":533,"brotliLength":0,"metaUid":"af902890-118"},"af902890-121":{"renderedLength":1040,"gzipLength":503,"brotliLength":0,"metaUid":"af902890-120"},"af902890-123":{"renderedLength":1116,"gzipLength":586,"brotliLength":0,"metaUid":"af902890-122"},"af902890-125":{"renderedLength":1307,"gzipLength":528,"brotliLength":0,"metaUid":"af902890-124"},"af902890-127":{"renderedLength":699,"gzipLength":407,"brotliLength":0,"metaUid":"af902890-126"},"af902890-129":{"renderedLength":368,"gzipLength":256,"brotliLength":0,"metaUid":"af902890-128"},"af902890-131":{"renderedLength":3228,"gzipLength":1252,"brotliLength":0,"metaUid":"af902890-130"},"af902890-133":{"renderedLength":4170,"gzipLength":1355,"brotliLength":0,"metaUid":"af902890-132"},"af902890-135":{"renderedLength":1975,"gzipLength":729,"brotliLength":0,"metaUid":"af902890-134"},"af902890-137":{"renderedLength":4557,"gzipLength":1641,"brotliLength":0,"metaUid":"af902890-136"},"af902890-139":{"renderedLength":2261,"gzipLength":991,"brotliLength":0,"metaUid":"af902890-138"},"af902890-141":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"af902890-140"}},"nodeMetas":{"af902890-0":{"id":"/src/cache.ts","moduleParts":{"index.js":"af902890-1"},"imported":[],"importedBy":[{"uid":"af902890-140"},{"uid":"af902890-132"},{"uid":"af902890-136"},{"uid":"af902890-138"}]},"af902890-2":{"id":"/src/config/ignore.ts","moduleParts":{"index.js":"af902890-3"},"imported":[{"uid":"af902890-142"},{"uid":"af902890-143"}],"importedBy":[{"uid":"af902890-140"},{"uid":"af902890-132"},{"uid":"af902890-138"}]},"af902890-4":{"id":"/src/config/loader.ts","moduleParts":{"index.js":"af902890-5"},"imported":[{"uid":"af902890-142"},{"uid":"af902890-143"}],"importedBy":[{"uid":"af902890-140"},{"uid":"af902890-132"}]},"af902890-6":{"id":"/src/utils/imports.ts","moduleParts":{"index.js":"af902890-7"},"imported":[],"importedBy":[{"uid":"af902890-140"},{"uid":"af902890-128"},{"uid":"af902890-18"},{"uid":"af902890-20"},{"uid":"af902890-22"},{"uid":"af902890-30"},{"uid":"af902890-40"},{"uid":"af902890-68"},{"uid":"af902890-94"},{"uid":"af902890-98"},{"uid":"af902890-104"},{"uid":"af902890-112"},{"uid":"af902890-118"},{"uid":"af902890-8"}]},"af902890-8":{"id":"/src/utils/ast.ts","moduleParts":{"index.js":"af902890-9"},"imported":[{"uid":"af902890-6"}],"importedBy":[{"uid":"af902890-128"},{"uid":"af902890-10"},{"uid":"af902890-12"},{"uid":"af902890-14"},{"uid":"af902890-16"},{"uid":"af902890-18"},{"uid":"af902890-20"},{"uid":"af902890-22"},{"uid":"af902890-24"},{"uid":"af902890-26"},{"uid":"af902890-28"},{"uid":"af902890-30"},{"uid":"af902890-32"},{"uid":"af902890-34"},{"uid":"af902890-36"},{"uid":"af902890-38"},{"uid":"af902890-40"},{"uid":"af902890-42"},{"uid":"af902890-44"},{"uid":"af902890-46"},{"uid":"af902890-48"},{"uid":"af902890-50"},{"uid":"af902890-52"},{"uid":"af902890-54"},{"uid":"af902890-56"},{"uid":"af902890-58"},{"uid":"af902890-60"},{"uid":"af902890-62"},{"uid":"af902890-64"},{"uid":"af902890-66"},{"uid":"af902890-68"},{"uid":"af902890-70"},{"uid":"af902890-72"},{"uid":"af902890-74"},{"uid":"af902890-76"},{"uid":"af902890-78"},{"uid":"af902890-80"},{"uid":"af902890-82"},{"uid":"af902890-84"},{"uid":"af902890-86"},{"uid":"af902890-88"},{"uid":"af902890-90"},{"uid":"af902890-92"},{"uid":"af902890-94"},{"uid":"af902890-96"},{"uid":"af902890-98"},{"uid":"af902890-100"},{"uid":"af902890-102"},{"uid":"af902890-104"},{"uid":"af902890-106"},{"uid":"af902890-108"},{"uid":"af902890-110"},{"uid":"af902890-112"},{"uid":"af902890-114"},{"uid":"af902890-116"},{"uid":"af902890-118"},{"uid":"af902890-120"}]},"af902890-10":{"id":"/src/rules/accessibility/dialog-a11y.ts","moduleParts":{"index.js":"af902890-11"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-12":{"id":"/src/rules/accessibility/overlay-a11y.ts","moduleParts":{"index.js":"af902890-13"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-14":{"id":"/src/rules/accessibility/toast-a11y.ts","moduleParts":{"index.js":"af902890-15"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-16":{"id":"/src/rules/architecture/dev-guard-warnings.ts","moduleParts":{"index.js":"af902890-17"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-18":{"id":"/src/rules/architecture/no-circular-import.ts","moduleParts":{"index.js":"af902890-19"},"imported":[{"uid":"af902890-8"},{"uid":"af902890-6"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-20":{"id":"/src/rules/architecture/no-cross-layer-import.ts","moduleParts":{"index.js":"af902890-21"},"imported":[{"uid":"af902890-8"},{"uid":"af902890-6"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-22":{"id":"/src/rules/architecture/no-deep-import.ts","moduleParts":{"index.js":"af902890-23"},"imported":[{"uid":"af902890-8"},{"uid":"af902890-6"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-24":{"id":"/src/rules/architecture/no-error-without-prefix.ts","moduleParts":{"index.js":"af902890-25"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-26":{"id":"/src/rules/form/no-submit-without-validation.ts","moduleParts":{"index.js":"af902890-27"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-28":{"id":"/src/rules/form/no-unregistered-field.ts","moduleParts":{"index.js":"af902890-29"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-30":{"id":"/src/rules/form/prefer-field-array.ts","moduleParts":{"index.js":"af902890-31"},"imported":[{"uid":"af902890-8"},{"uid":"af902890-6"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-32":{"id":"/src/rules/hooks/no-raw-addeventlistener.ts","moduleParts":{"index.js":"af902890-33"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-34":{"id":"/src/rules/hooks/no-raw-localstorage.ts","moduleParts":{"index.js":"af902890-35"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-36":{"id":"/src/rules/hooks/no-raw-setinterval.ts","moduleParts":{"index.js":"af902890-37"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-38":{"id":"/src/rules/jsx/no-and-conditional.ts","moduleParts":{"index.js":"af902890-39"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-40":{"id":"/src/rules/jsx/no-children-access.ts","moduleParts":{"index.js":"af902890-41"},"imported":[{"uid":"af902890-8"},{"uid":"af902890-6"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-42":{"id":"/src/rules/jsx/no-classname.ts","moduleParts":{"index.js":"af902890-43"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-44":{"id":"/src/rules/jsx/no-htmlfor.ts","moduleParts":{"index.js":"af902890-45"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-46":{"id":"/src/rules/jsx/no-index-as-by.ts","moduleParts":{"index.js":"af902890-47"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-48":{"id":"/src/rules/jsx/no-map-in-jsx.ts","moduleParts":{"index.js":"af902890-49"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-50":{"id":"/src/rules/jsx/no-missing-for-by.ts","moduleParts":{"index.js":"af902890-51"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-52":{"id":"/src/rules/jsx/no-onchange.ts","moduleParts":{"index.js":"af902890-53"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-54":{"id":"/src/rules/jsx/no-props-destructure.ts","moduleParts":{"index.js":"af902890-55"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-56":{"id":"/src/rules/jsx/no-ternary-conditional.ts","moduleParts":{"index.js":"af902890-57"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-58":{"id":"/src/rules/jsx/use-by-not-key.ts","moduleParts":{"index.js":"af902890-59"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-60":{"id":"/src/rules/lifecycle/no-dom-in-setup.ts","moduleParts":{"index.js":"af902890-61"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-62":{"id":"/src/rules/lifecycle/no-effect-in-mount.ts","moduleParts":{"index.js":"af902890-63"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-64":{"id":"/src/rules/lifecycle/no-missing-cleanup.ts","moduleParts":{"index.js":"af902890-65"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-66":{"id":"/src/rules/lifecycle/no-mount-in-effect.ts","moduleParts":{"index.js":"af902890-67"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-68":{"id":"/src/rules/performance/no-eager-import.ts","moduleParts":{"index.js":"af902890-69"},"imported":[{"uid":"af902890-8"},{"uid":"af902890-6"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-70":{"id":"/src/rules/performance/no-effect-in-for.ts","moduleParts":{"index.js":"af902890-71"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-72":{"id":"/src/rules/performance/no-large-for-without-by.ts","moduleParts":{"index.js":"af902890-73"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-74":{"id":"/src/rules/performance/prefer-show-over-display.ts","moduleParts":{"index.js":"af902890-75"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-76":{"id":"/src/rules/reactivity/no-bare-signal-in-jsx.ts","moduleParts":{"index.js":"af902890-77"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-78":{"id":"/src/rules/reactivity/no-context-destructure.ts","moduleParts":{"index.js":"af902890-79"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-80":{"id":"/src/rules/reactivity/no-effect-assignment.ts","moduleParts":{"index.js":"af902890-81"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-82":{"id":"/src/rules/reactivity/no-nested-effect.ts","moduleParts":{"index.js":"af902890-83"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-84":{"id":"/src/rules/reactivity/no-peek-in-tracked.ts","moduleParts":{"index.js":"af902890-85"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-86":{"id":"/src/rules/reactivity/no-signal-in-loop.ts","moduleParts":{"index.js":"af902890-87"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-88":{"id":"/src/rules/reactivity/no-signal-leak.ts","moduleParts":{"index.js":"af902890-89"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-90":{"id":"/src/rules/reactivity/no-unbatched-updates.ts","moduleParts":{"index.js":"af902890-91"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-92":{"id":"/src/rules/reactivity/prefer-computed.ts","moduleParts":{"index.js":"af902890-93"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-94":{"id":"/src/rules/router/no-href-navigation.ts","moduleParts":{"index.js":"af902890-95"},"imported":[{"uid":"af902890-8"},{"uid":"af902890-6"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-96":{"id":"/src/rules/router/no-imperative-navigate-in-render.ts","moduleParts":{"index.js":"af902890-97"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-98":{"id":"/src/rules/router/no-missing-fallback.ts","moduleParts":{"index.js":"af902890-99"},"imported":[{"uid":"af902890-8"},{"uid":"af902890-6"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-100":{"id":"/src/rules/router/prefer-use-is-active.ts","moduleParts":{"index.js":"af902890-101"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-102":{"id":"/src/rules/ssr/no-mismatch-risk.ts","moduleParts":{"index.js":"af902890-103"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-104":{"id":"/src/rules/ssr/no-window-in-ssr.ts","moduleParts":{"index.js":"af902890-105"},"imported":[{"uid":"af902890-8"},{"uid":"af902890-6"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-106":{"id":"/src/rules/ssr/prefer-request-context.ts","moduleParts":{"index.js":"af902890-107"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-108":{"id":"/src/rules/store/no-duplicate-store-id.ts","moduleParts":{"index.js":"af902890-109"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-110":{"id":"/src/rules/store/no-mutate-store-state.ts","moduleParts":{"index.js":"af902890-111"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-112":{"id":"/src/rules/store/no-store-outside-provider.ts","moduleParts":{"index.js":"af902890-113"},"imported":[{"uid":"af902890-8"},{"uid":"af902890-6"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-114":{"id":"/src/rules/styling/no-dynamic-styled.ts","moduleParts":{"index.js":"af902890-115"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-116":{"id":"/src/rules/styling/no-inline-style-object.ts","moduleParts":{"index.js":"af902890-117"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-118":{"id":"/src/rules/styling/no-theme-outside-provider.ts","moduleParts":{"index.js":"af902890-119"},"imported":[{"uid":"af902890-8"},{"uid":"af902890-6"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-120":{"id":"/src/rules/styling/prefer-cx.ts","moduleParts":{"index.js":"af902890-121"},"imported":[{"uid":"af902890-8"}],"importedBy":[{"uid":"af902890-122"}]},"af902890-122":{"id":"/src/rules/index.ts","moduleParts":{"index.js":"af902890-123"},"imported":[{"uid":"af902890-10"},{"uid":"af902890-12"},{"uid":"af902890-14"},{"uid":"af902890-16"},{"uid":"af902890-18"},{"uid":"af902890-20"},{"uid":"af902890-22"},{"uid":"af902890-24"},{"uid":"af902890-26"},{"uid":"af902890-28"},{"uid":"af902890-30"},{"uid":"af902890-32"},{"uid":"af902890-34"},{"uid":"af902890-36"},{"uid":"af902890-38"},{"uid":"af902890-40"},{"uid":"af902890-42"},{"uid":"af902890-44"},{"uid":"af902890-46"},{"uid":"af902890-48"},{"uid":"af902890-50"},{"uid":"af902890-52"},{"uid":"af902890-54"},{"uid":"af902890-56"},{"uid":"af902890-58"},{"uid":"af902890-60"},{"uid":"af902890-62"},{"uid":"af902890-64"},{"uid":"af902890-66"},{"uid":"af902890-68"},{"uid":"af902890-70"},{"uid":"af902890-72"},{"uid":"af902890-74"},{"uid":"af902890-76"},{"uid":"af902890-78"},{"uid":"af902890-80"},{"uid":"af902890-82"},{"uid":"af902890-84"},{"uid":"af902890-86"},{"uid":"af902890-88"},{"uid":"af902890-90"},{"uid":"af902890-92"},{"uid":"af902890-94"},{"uid":"af902890-96"},{"uid":"af902890-98"},{"uid":"af902890-100"},{"uid":"af902890-102"},{"uid":"af902890-104"},{"uid":"af902890-106"},{"uid":"af902890-108"},{"uid":"af902890-110"},{"uid":"af902890-112"},{"uid":"af902890-114"},{"uid":"af902890-116"},{"uid":"af902890-118"},{"uid":"af902890-120"}],"importedBy":[{"uid":"af902890-140"},{"uid":"af902890-124"},{"uid":"af902890-132"},{"uid":"af902890-136"},{"uid":"af902890-138"}]},"af902890-124":{"id":"/src/config/presets.ts","moduleParts":{"index.js":"af902890-125"},"imported":[{"uid":"af902890-122"}],"importedBy":[{"uid":"af902890-140"},{"uid":"af902890-132"},{"uid":"af902890-136"},{"uid":"af902890-138"}]},"af902890-126":{"id":"/src/utils/source.ts","moduleParts":{"index.js":"af902890-127"},"imported":[],"importedBy":[{"uid":"af902890-140"},{"uid":"af902890-130"},{"uid":"af902890-128"}]},"af902890-128":{"id":"/src/utils/index.ts","moduleParts":{"index.js":"af902890-129"},"imported":[{"uid":"af902890-8"},{"uid":"af902890-6"},{"uid":"af902890-126"}],"importedBy":[{"uid":"af902890-132"},{"uid":"af902890-130"},{"uid":"af902890-138"}]},"af902890-130":{"id":"/src/runner.ts","moduleParts":{"index.js":"af902890-131"},"imported":[{"uid":"af902890-144"},{"uid":"af902890-128"},{"uid":"af902890-126"}],"importedBy":[{"uid":"af902890-140"},{"uid":"af902890-132"},{"uid":"af902890-136"},{"uid":"af902890-138"}]},"af902890-132":{"id":"/src/lint.ts","moduleParts":{"index.js":"af902890-133"},"imported":[{"uid":"af902890-142"},{"uid":"af902890-143"},{"uid":"af902890-0"},{"uid":"af902890-2"},{"uid":"af902890-4"},{"uid":"af902890-124"},{"uid":"af902890-122"},{"uid":"af902890-130"},{"uid":"af902890-128"}],"importedBy":[{"uid":"af902890-140"}]},"af902890-134":{"id":"/src/reporter.ts","moduleParts":{"index.js":"af902890-135"},"imported":[],"importedBy":[{"uid":"af902890-140"},{"uid":"af902890-138"}]},"af902890-136":{"id":"/src/lsp/index.ts","moduleParts":{"index.js":"af902890-137"},"imported":[{"uid":"af902890-0"},{"uid":"af902890-124"},{"uid":"af902890-122"},{"uid":"af902890-130"}],"importedBy":[{"uid":"af902890-140"}]},"af902890-138":{"id":"/src/watcher.ts","moduleParts":{"index.js":"af902890-139"},"imported":[{"uid":"af902890-142"},{"uid":"af902890-143"},{"uid":"af902890-0"},{"uid":"af902890-2"},{"uid":"af902890-124"},{"uid":"af902890-134"},{"uid":"af902890-122"},{"uid":"af902890-130"},{"uid":"af902890-128"}],"importedBy":[{"uid":"af902890-140"}]},"af902890-140":{"id":"/src/index.ts","moduleParts":{"index.js":"af902890-141"},"imported":[{"uid":"af902890-0"},{"uid":"af902890-2"},{"uid":"af902890-4"},{"uid":"af902890-124"},{"uid":"af902890-132"},{"uid":"af902890-134"},{"uid":"af902890-136"},{"uid":"af902890-122"},{"uid":"af902890-130"},{"uid":"af902890-6"},{"uid":"af902890-126"},{"uid":"af902890-138"}],"importedBy":[],"isEntry":true},"af902890-142":{"id":"node:fs","moduleParts":{},"imported":[],"importedBy":[{"uid":"af902890-2"},{"uid":"af902890-4"},{"uid":"af902890-132"},{"uid":"af902890-138"}]},"af902890-143":{"id":"node:path","moduleParts":{},"imported":[],"importedBy":[{"uid":"af902890-2"},{"uid":"af902890-4"},{"uid":"af902890-132"},{"uid":"af902890-138"}]},"af902890-144":{"id":"oxc-parser","moduleParts":{},"imported":[],"importedBy":[{"uid":"af902890-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;
|