UNPKG

320 BTypeScriptView Raw
1import { Linter } from "../index";
2
3export interface StrictMode extends Linter.RulesRecord {
4 /**
5 * Rule to require or disallow strict mode directives.
6 *
7 * @since 0.1.0
8 * @see https://eslint.org/docs/rules/strict
9 */
10 strict: Linter.RuleEntry<["safe" | "global" | "function" | "never"]>;
11}