Skip to content

OverExposureSkipReason

Why a fix run left a finding untouched:

  • decorated — the member carries a decorator, so the modifier insertion point is ambiguous. - shared-export — the export keyword is shared with a still-exported sibling declarator. - test-only — the declaration is exposed purely for tests, so tightening would break the test.

Import:

import type { OverExposureSkipReason } from 'obsidian-dev-utils/script-utils/linters/over-exposure';

Signature:

export type OverExposureSkipReason

Signature:

type OverExposureSkipReason = 'decorated' | 'shared-export' | 'test-only'

Type: ‘decorated’ | ‘shared-export’ | ‘test-only’


Links to this page: