Skip to content

Interface: RuleOptions

Defined in: packages/providers/src/types.ts:80

Optional lint behavior knobs for rule families with policy choices.

Properties

sealed?

ts
optional sealed?: object;

Defined in: packages/providers/src/types.ts:87

Sealed-mode policy placeholder for compatibility tuning.

mode?

ts
optional mode?: "compat" | "strict";

strict: flag all reset-like keywords; compat: keep legacy behavior hooks.


values?

ts
optional values?: object;

Defined in: packages/providers/src/types.ts:82

Value-keyword policy used by decorator checks.

allowInherit?

ts
optional allowInherit?: boolean;

Whether inherit is allowed where reset-like keywords are otherwise disallowed.

Released under the MIT License