UNIFIED
Repobility · multi-layer engine · AI coders
Complete repo analysis
Last scanned 17 hours, 16 minutes ago
·
v2
·
580 findings from
2 sources.
Findings combine the legacy security pipeline AND the multi-layer engine
(atlas, wiring, flows, ranked) AND verified AI agent contributions.
{# ── 2026-05-17 R27 #5: score breakdown panel ──────────────────────
Surfaces the score_breakdown JSON that's been silently stored on
Repository for months. Turns hidden math into a trust signal. #}
Score breakdown
â 2026-05-17-v4
calibration-aware
| Component |
Sub-score |
Weight |
Contribution |
structure_score |
85.0
|
0.15 |
12.75 |
security_score |
100.0
|
0.25 |
25.00 |
testing_score |
80.0
|
0.20 |
16.00 |
documentation_score |
75.0
|
0.15 |
11.25 |
practices_score |
80.0
|
0.15 |
12.00 |
code_quality |
69.4
|
0.10 |
6.94 |
| Overall |
|
1.00 |
83.9 |
Severity distribution — click a segment to filter
Scan summary
Repository scanned at 78.7/100 with 77.8% coverage. It contains 39464 nodes across 1 cross-layer flows, written primarily in mixed languages. Engine surfaced 573 findings — concentrated in frontend (374), quality (140), software (50). Risk profile is high: 0 critical, 7 high, 8 medium. Recommended next step: open the frontend layer findings first — that's where the highest-impact wins live.
Showing 573 of 580 findings.
Click TP / FP to vote on a finding's accuracy — votes adjust the confidence
weighting and improve detection across the platform.
high
Legacy
software
ssrf
conf 1.00
[SEC029] Server-Side Request Forgery (SSRF) — outbound HTTP from user input: Outbound HTTP request to a user-controlled URL without allowlist validation. Attackers can probe internal services (169.254.169.254 metadata, internal Kubernetes endpoints, file:// URIs), exfiltrate data, or pivot through your network. SSRF is OWASP A10:2021 and a frequent foothold in cloud breaches.
Validate the URL against an allowlist BEFORE fetching:
ALLOWED = {'images.example.com', 'cdn.example.com'}
host = urlparse(url).hostname
if host not in ALLOWED: abort(400)
Or use a server-side proxy (Imgproxy / serve-files-only-from-S3) that isolates outbound network access from the request h…
_packages/native-preview/src/api/path.ts:506
ssrflegacy
medium
Legacy
quality
practices
conf 1.00
[CFG006] Missing .gitignore: No .gitignore file. Risk of committing secrets and build artifacts.
Add a .gitignore appropriate for your language/framework.
practiceslegacy
medium
9-layer
frontend
frontend-quality
conf 1.00
`dangerouslySetInnerHTML` used in a React component — testdata/baselines/reference/submodule/compiler/controlFlowPropertyDeclarations.js:113
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library.
Why: OWASP basics. Already partially flagged by the security analyzer.
Rule id: fq.dangerous-html
frontend-qualityfq.dangerous-html
medium
9-layer
quality
integrity
conf 1.00
`fetch()` without try/.catch or AbortSignal — testdata/baselines/reference/submodule/compiler/collectionPatternNoError.js:26
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
integrityfragile-runtimerobustness
medium
9-layer
quality
integrity
conf 1.00
`fetch()` without try/.catch or AbortSignal — testdata/baselines/reference/submodule/compiler/stackDepthLimitCastingType.js:8
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
integrityfragile-runtimerobustness
medium
9-layer
quality
integrity
conf 1.00
`fetch()` without try/.catch or AbortSignal — testdata/baselines/reference/submodule/conformance/importMeta(module=commonjs,target=esnext).js:6
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
integrityfragile-runtimerobustness
medium
9-layer
quality
integrity
conf 1.00
`fetch()` without try/.catch or AbortSignal — testdata/baselines/reference/submodule/conformance/importMeta(module=es2020,target=esnext).js:6
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
integrityfragile-runtimerobustness
medium
9-layer
quality
integrity
conf 1.00
`fetch()` without try/.catch or AbortSignal — testdata/baselines/reference/submodule/conformance/importMeta(module=esnext,target=esnext).js:6
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
integrityfragile-runtimerobustness
medium
9-layer
quality
integrity
conf 1.00
`fetch()` without try/.catch or AbortSignal — testdata/baselines/reference/submodule/conformance/intraExpressionInferences.js:163
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
integrityfragile-runtimerobustness
medium
9-layer
cicd
coverage
conf 1.00
No CI/CD pipelines detected
No GitHub Actions, GitLab CI, or CircleCI configs found. Without CI you can't gate deploys on tests/lints.
coverage
low
Legacy
quality
error_handling
conf 1.00
[ERR003] Ignored Error (Go): Ignoring error return values.
Handle the error or use errcheck linter.
cmd/tsgo/isprocessalive_windows.go:19
error_handlinglegacy
low
Legacy
quality
error_handling
conf 1.00
[ERR003] Ignored Error (Go): Ignoring error return values.
Handle the error or use errcheck linter.
cmd/tsgo/enablevtprocessing_windows.go:19
error_handlinglegacy
low
Legacy
quality
error_handling
conf 1.00
[ERR003] Ignored Error (Go): Ignoring error return values.
Handle the error or use errcheck linter.
_tools/customlint/unexportedapi.go:277
error_handlinglegacy
low
Legacy
quality
quality
conf 0.86
Duplicated implementation block across source files
Extract the shared behavior into one function/module or delete the inactive duplicate after proving which path is used.
internal/api/conn_sync.go:69
qualitylegacy
low
Legacy
quality
quality
conf 0.86
Duplicated implementation block across source files
Extract the shared behavior into one function/module or delete the inactive duplicate after proving which path is used.
_packages/native-preview/src/api/sync/types.ts:61
qualitylegacy
low
9-layer
quality
maintenance
conf 1.00
135 TODO/FIXME markers
High count of TODO/FIXME/HACK markers — track them as issues so they're not forgotten.
maintenance
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: .gulp.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/constructSignatureWithInferReturnType.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/declarationEmitBigInt.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/declarationEmitConstObjectLiteralGenericMethod1.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/declarationEmitQualifiedName.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/declarationMapInlineSourcesContent.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/emitEndOfFileJSDocComments.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/emitIncompleteDoStatement.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/emitReactJsxSelfClosingElement.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/enumAutoIncrementValue.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/enumMemberInterfacePropertyDeclarationEmit.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/exportAssignmentMerging1.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/exportAssignmentMerging2.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/exportAssignmentMerging4.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/exportAssignmentMerging5.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/exportAssignmentMerging6.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/exportDestructuring.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/importUrl.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/incrementalConcurrentSafeAliasFollowing.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/isolatedDeclarationsAsConstNestedObjects.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/iterationErrorOverNotIterableUnions1.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/jsDeclarationExportDefaultAssignmentCrash.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/jsdocCommentDefaultExport(module=esnext).js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/jsExpandoAssignmentElementAccess.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/jsonImportMultipleTopLevelObjects.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/jsxElementTypeUnexpectedType.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/jsxLibraryManagedAttributesUnexpectedType.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/jsxMultilineAttributeStringValues2.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/mergedEnumDeclarationMemberReferences.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/multipleModuleExportsAssignments.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/nodeModulesPackageImportsRootWildcard.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/nodeModulesPackageImportsRootWildcardNode16.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/noLibAndNoUncheckedIndexedAccessDestructuringArray.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/objectNameCollisionCommonJS(module=commonjs).js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/objectNameCollisionCommonJS(module=esnext).js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/processingDiagnostic.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/processingDiagnosticSkipLibCheck.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/processingDiagnosticTsIgnore.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/regexInvalidUtf8WithUnicodeFlag.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/regularExpressionQuantifierBounds1.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/simpleTestMultiFile.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/simpleTestSingleFile.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/singleSettingsSimpleTest.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/sliceTupleTypeOutOfBounds.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/tsconfigRootdirInclude.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/tsconfigSimpleTest.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/unicodeSurrogatesInStringLiterals.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/unionElementErrorTruncation.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/unresolvedTypeDirectiveError.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
software
dead-code-candidate
conf 1.00
File has no detected symbols: testdata/baselines/reference/compiler/usingDeclarationWithNewline.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low
9-layer
quality
integrity
conf 1.00
Legacy-named symbol `importAssertionsDeprecated` in testdata/baselines/reference/submodule/compiler/importAssertionsDeprecated.js:1
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
integritylegacy-markerdead-code
low
9-layer
quality
integrity
conf 1.00
Legacy-named symbol `moduleKeywordDeprecated` in testdata/baselines/reference/submodule/compiler/moduleKeywordDeprecated.js:1
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
integritylegacy-markerdead-code
low
9-layer
quality
integrity
conf 1.00
Legacy-named symbol `NonNullableOld` in testdata/baselines/reference/submodule/compiler/nonNullableAndObjectIntersections(strict=false).js:16
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
integritylegacy-markerdead-code
low
9-layer
quality
integrity
conf 1.00
Legacy-named symbol `NonNullableOld` in testdata/baselines/reference/submodule/compiler/nonNullableAndObjectIntersections(strict=true).js:16
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
integritylegacy-markerdead-code
low
9-layer
quality
integrity
conf 1.00
Legacy-named symbol `TupleMapperOld` in testdata/baselines/reference/submodule/compiler/inferRestArgumentsMappedTuple.js:8
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
integritylegacy-markerdead-code
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/compiler/mergedNamespaceDeclarationMemberReferences.js:12
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/compiler/privateNameTaggedTemplate.js:8
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/compiler/reachabilityChecksIgnored.js:8
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/compiler/removeComments.js:6
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/compiler/subpathImportDeclarationEmit.js:28
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/bindingPatternInParameter01.js:7
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/binopAssignmentShouldHaveType.js:14
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/blockScopedVariablesUseBeforeDef(target=es2015).js:114
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/callsOnComplexSignatures.js:41
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/capturedShorthandPropertyAssignmentNoCheck(target=es2015).js:9
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/classExpressionWithStaticProperties3(target=es2015).js:12
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/classExpressionWithStaticPropertiesES63.js:12
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/classFieldSuperAccessible.js:6
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/classFunctionMerging2.js:16
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/classMemberInitializerWithLamdaScoping.js:12
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/classMemberInitializerWithLamdaScoping2.js:14
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/classMemberInitializerWithLamdaScoping3.js:14
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/classMemberInitializerWithLamdaScoping4.js:14
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/classMemberInitializerWithLamdaScoping5.js:12
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/classNameReferencesInStaticElements.js:6
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/classVarianceCircularity.js:9
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/coAndContraVariantInferences.js:34
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/collisionRestParameterUnderscoreIUsage.js:8
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/collisionSuperAndNameResolution.js:12
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/collisionThisExpressionAndLocalVarInFunction.js:9
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/collisionThisExpressionAndNameResolution.js:11
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/collisionThisExpressionAndParameter.js:50
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/constructorWithIncompleteTypeAnnotation.js:50
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/constructorWithParameterPropertiesAndPrivateFields.es2015.js:14
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/constructorWithSuperAndPrologue.es5(target=es2015).js:9
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/contextualOverloadListFromArrayUnion.js:63
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/contextualTypeOnYield1.js:7
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/contextualTypeOnYield2.js:6
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/controlFlowFinallyNoCatchAssignments.js:14
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/correlatedUnions.js:128
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/declarationEmitBindingPatternsUnused.js:61
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/declarationEmitEnumReferenceViaImportEquals.js:24
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/declarationEmitPartialNodeReuseTypeOf.js:12
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/declarationEmitUsingAlternativeContainingModules1.js:220
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/declarationEmitUsingAlternativeContainingModules2.js:220
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/decoratorMetadataOnInferredType(target=es2015).js:9
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/decoratorMetadataWithConstructorType(target=es2015).js:9
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/decoratorWithUnderscoreMethod.js:7
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/didYouMeanSuggestionErrors.js:12
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/discriminantPropertyCheck.js:231
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/doesNotNarrowUnionOfConstructorsWithInstanceof.js:28
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/duplicateLocalVariable1.js:47
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/elidedJSImport1.js:6
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/es6ClassTest2.js:20
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/extendedUnicodeEscapeSequenceIdentifiers.js:7
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/extendedUnicodePlaneIdentifiers.js:6
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/extendedUnicodePlaneIdentifiersJSDoc.js:10
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/extendGlobalThis.js:16
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/extendGlobalThis2.js:5
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/forInStrictNullChecksNoError.js:6
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/functionTypeArgumentAssignmentCompat.js:15
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/genericCapturingFunctionNarrowing.js:6
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/genericFunctionCallSignatureReturnTypeMismatch.js:13
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/importElisionExportNonExportAndDefault.js:12
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/inferenceShouldFailOnEvolvingArrays.js:7
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/infinitelyExpandingTypes2.js:13
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/inlineSourceMap(target=es2015).js:5
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/isolatedModulesImportConstEnum.js:5
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/lambdaParameterWithTupleArgsHasCorrectAssignability.js:20
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/letConstInCaseClauses(target=es2015).js:9
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/letShadowedByNameInNestedScope.js:9
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/mappedTypeGenericIndexedAccess.js:41
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/missingCloseParenStatements(alwaysstrict=true).js:12
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/modularizeLibrary_NoErrorDuplicateLibOptions1.js:57
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/modularizeLibrary_NoErrorDuplicateLibOptions2.js:57
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/modularizeLibrary_TargetES5UsingES6Lib.js:57
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/moduleVariables.js:9
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/narrowByInstanceof.js:55
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/narrowingAssignmentReadonlyRespectsAssertion.js:34
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/narrowingMutualSubtypes.js:113
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/narrowingRestGenericCall.js:15
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/narrowingUnionWithBang.js:19
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/nestedSuperCallEmit(target=es2015).js:10
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/noCollisionThisExpressionAndLocalVarInFunction.js:9
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/noCollisionThisExpressionInFunctionAndVarInGlobal.js:9
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/nodeColonModuleResolution.js:24
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/nodeColonModuleResolution2.js:19
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/normalizedIntersectionTooComplex.js:39
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/parameterPropertyInConstructorWithPrologues.js:31
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/predicateSemantics.js:61
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/protectedAccessThroughContextualThis.js:16
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/reachabilityChecksIgnored.js:8
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/reactDefaultPropsInferenceSuccess.js:30
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/referenceSatisfiesExpression.js:22
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/reverseMappedTypeRecursiveInference.js:13
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/selfNameAndImportsEmitInclusion.js:24
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sideEffectImports3(moduledetection=auto,nouncheckedsideeffectimports=false).js:7
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sideEffectImports3(moduledetection=auto,nouncheckedsideeffectimports=true).js:7
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sideEffectImports3(moduledetection=force,nouncheckedsideeffectimports=false).js:7
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sideEffectImports3(moduledetection=force,nouncheckedsideeffectimports=true).js:7
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sideEffectImports3(moduledetection=legacy,nouncheckedsideeffectimports=false).js:7
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sideEffectImports3(moduledetection=legacy,nouncheckedsideeffectimports=true).js:7
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringForArrayBindingPattern(target=es2015).js:22
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringForArrayBindingPattern2(target=es2015).js:28
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringForArrayBindingPatternDefaultValues(target=es2015).js:22
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2(target=es2015).js:28
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringForObjectBindingPattern.js:30
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringForObjectBindingPattern2.js:33
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringForObjectBindingPatternDefaultValues.js:30
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringForObjectBindingPatternDefaultValues2.js:33
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringForOfArrayBindingPattern(target=es2015).js:25
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringForOfArrayBindingPattern2(target=es2015).js:30
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues(target=es2015).js:25
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2(target=es2015).js:30
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringForOfObjectBindingPattern(target=es2015).js:33
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringForOfObjectBindingPattern2(target=es2015).js:36
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues(target=es2015).js:33
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2(target=es2015).js:36
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringParameterNestedObjectBindingPattern.js:17
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringParameterNestedObjectBindingPatternDefaultValues.js:23
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringParameterObjectBindingPattern.js:15
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringParameterObjectBindingPatternDefaultValues.js:15
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringParametertArrayBindingPattern(target=es2015).js:11
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringParametertArrayBindingPattern2(target=es2015).js:11
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringParametertArrayBindingPatternDefaultValues(target=es2015).js:11
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringParametertArrayBindingPatternDefaultValues2(target=es2015).js:11
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringVariableStatement.js:18
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringVariableStatement1.js:26
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringVariableStatementArrayBindingPattern(target=es2015).js:22
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringVariableStatementArrayBindingPattern2(target=es2015).js:21
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringVariableStatementArrayBindingPattern3(target=es2015).js:50
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues(target=es2015).js:21
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues2(target=es2015).js:19
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues3(target=es2015).js:48
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringVariableStatementDefaultValues.js:18
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringVariableStatementNestedObjectBindingPattern.js:22
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/sourceMapValidationDestructuringVariableStatementNestedObjectBindingPatternWithDefaultValues.js:39
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/superErrors.js:14
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/superInLambdas(target=es2015).js:7
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/symbolMergeValueAndImportedType.js:6
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/temporal.js:114
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/thisInFunctionCall.js:19
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/truthinessCallExpressionCoercion.js:22
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/truthinessCallExpressionCoercion1.js:6
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/truthinessCallExpressionCoercion2.js:14
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/tryCatchFinallyControlFlow.js:279
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/tslibReExportHelpers2.js:37
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/typeAliasDeclarationEmit3.js:7
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/typeInterfaceDeclarationsInBlockStatements1.js:8
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/umdGlobalAugmentationNoCrash.js:18
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/umdNamespaceMergedWithGlobalAugmentationIsNotCircular.js:23
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/underscoreThisInDerivedClass01.js:24
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/unicodeEscapesInJSDoc.js:9
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/unreachableDeclarations(preserveconstenums=false).js:7
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/unreachableDeclarations(preserveconstenums=true).js:7
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/unusedLocalProperty.js:11
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/unusedLocalsAndObjectSpread.js:10
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/unusedLocalsInMethod4.js:18
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/unusedVariablesWithUnderscoreInBindingElement.js:6
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/unusedVariablesWithUnderscoreInForOfLoop.js:6
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/useUnknownInCatchVariables01.js:16
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/compiler/voidUndefinedReduction.js:13
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/abstractProperty(target=es2015).js:7
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/abstractProperty(target=esnext).js:7
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/accessorsOverrideProperty2.js:10
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/awaitUsingDeclarationsTopLevelOfModule.1(module=esnext).js:15
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/catchClauseWithTypeAnnotation.js:18
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/checkJsxUnionSFXContextualTypeInferredCorrectly.js:30
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/classStaticBlock13(target=es2015).js:8
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/classStaticBlock13(target=es2022).js:8
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/classStaticBlock13(target=esnext).js:8
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/classStaticBlock15(target=es2015).js:19
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/classStaticBlock15(target=es2022).js:19
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/classStaticBlock15(target=esnext).js:19
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/classStaticBlock23(target=es2022).js:9
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/classStaticBlock23(target=esnext).js:9
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/classStaticBlock27.js:9
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/classStaticBlock28.js:12
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/classStaticBlock3(target=es2022).js:10
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/classStaticBlock3(target=esnext).js:10
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/controlFlowBindingElement.js:11
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/controlFlowInstanceofExtendsFunction.js:28
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/controlFlowInstanceOfGuardPrimitives.js:6
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/controlFlowOptionalChain.js:569
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/controlFlowParameter.js:9
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/dependentDestructuredVariables.js:240
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/derivedClassSuperProperties(target=es2015).js:217
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/derivedClassSuperStatementPosition(target=es2015).js:35
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/derivedUninitializedPropertyDeclaration.js:82
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/destructuringObjectBindingPatternAndAssignment6(target=esnext).js:10
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/destructuringObjectBindingPatternAndAssignment7(target=esnext).js:11
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/destructuringObjectBindingPatternAndAssignment8(target=esnext).js:11
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/dynamicImportDefer(module=commonjs).js:5
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/dynamicImportDefer(module=es2015).js:5
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/dynamicImportDefer(module=es2020).js:5
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/dynamicImportDefer(module=esnext).js:5
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/dynamicImportDefer(module=nodenext).js:5
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/dynamicImportDefer(module=preserve).js:5
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/emitStatementsBeforeSuperCall.js:9
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/emitStatementsBeforeSuperCallWithDefineFields.js:9
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/equalityWithtNullishCoalescingAssignment(strict=false).js:8
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/equalityWithtNullishCoalescingAssignment(strict=true).js:8
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/es2016IntlAPIs.js:6
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/es2018IntlAPIs.js:8
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/es2020IntlAPIs.js:9
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/ES5For-of1(target=es2015).js:5
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/ES5For-of22(target=es2015).js:6
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/ES5For-of23(target=es2015).js:6
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/ES5For-of33(target=es2015).js:5
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/ES5For-of37(target=es2015).js:14
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/esDecorators-contextualTypes.2.js:11
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/exportDeferInvalid.js:5
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/exportNamespace12.js:6
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/exportsAndImportsWithUnderscores4(target=es2015).js:6
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/importCallExpression4ES2020.js:20
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/importCallExpressionInCJS5.js:20
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/importCallExpressionNoModuleKindSpecified.js:20
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/importDefaultBindingDefer.js:5
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/importDeferInvalidDefault.js:5
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/importDeferInvalidNamed.js:5
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/importDeferNamespace(module=commonjs).js:5
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/importDeferNamespace(module=es2015).js:5
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/importDeferNamespace(module=es2020).js:5
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/importDeferNamespace(module=esnext).js:5
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/importDeferNamespace(module=nodenext).js:5
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/importDeferNamespace(module=preserve).js:5
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/importDeferTypeConflict1.js:5
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/importDeferTypeConflict2.js:5
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/importEquals3.js:20
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/indexSignatures1.js:245
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/initializationOrdering1(target=es2021,usedefineforclassfields=false).js:12
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/initializationOrdering1(target=es2021,usedefineforclassfields=true).js:12
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/initializationOrdering1(target=es2022,usedefineforclassfields=false).js:12
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
low
9-layer
frontend
frontend-quality
conf 1.00
Stray `console.log` in TS/JS — testdata/baselines/reference/submodule/conformance/initializationOrdering1(target=es2022,usedefineforclassfields=true).js:12
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.
Why: Hygiene — easy to leak debug output.
Rule id: fq.console-leak
frontend-qualityfq.console-leak
Showing first 300 of 573. Refine filters or use the
legacy findings page for deep search.
{# ── 2026-05-17 Round 14: AI-agent bridge footer ──────────────────────
Discoverability: the /agents/voting/ guide + MCP manifest exist but
aren't linked from anywhere users actually land. Small, opt-in footer. #}