UNPKG

eslint-plugin-switch-statement

Version:

Rules for properly handling switch statements, including ensuring that appropriate exhaustive case handling.

12 lines (11 loc) 518 B
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.plugin = exports.rules = void 0; const require_appropriate_default_case_1 = __importDefault(require("./rules/require-appropriate-default-case")); exports.rules = { "require-appropriate-default-case": require_appropriate_default_case_1.default, }; exports.plugin = { rules: exports.rules };