source: trip-planner-front/node_modules/@types/eslint/rules/strict-mode.d.ts

Last change on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 320 bytes
Line 
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}
Note: See TracBrowser for help on using the repository browser.